Osclass forums
Support forums => General help => 3.8.x => Topic started by: Germar on June 15, 2019, 04:42:56 pm
-
Hi all,
For the start: i'm a rookie at PHP.
I have installed the Watchlist plugin.
In my item.php is now a link visible. But I want to change that into a button.
How do I do that?
This is the code that is been added in item.php: <?php watchlist(); ?>
Can someone please help me with this problem? Thanks in advance!
Regards,
Germar
-
You can change it in the plugin folder itself.
Maybe index.php under watchlist plugin or it might be functions.php
-
You can change it in the plugin folder itself.
Maybe index.php under watchlist plugin or it might be functions.php
Nice, but HOW? I ned the code to change the link into a buton :(
-
You can change it in the plugin folder itself.
Maybe index.php under watchlist plugin or it might be functions.php
Nice, but HOW? I ned the code to change the link into a buton :(
If your site uses 'Bootstrap', the following line should do it,
<button type="button" class="btn btn-primary" btn-block><?php watchlist(); ?></button>
Regards
-
Thanks BritWeb that did the trick! Case close many thanks!!!