mp0023
Forum Replies Created
-
Forum: Plugins
In reply to: [Scroll Triggered Boxes] Box does not show upYes, just tried it. It works!
Is there anyway to have both running at the same time, or are they mutually exclusive? Thanks!
(If it’s relevant, I’m using W3 Total Cache)
Forum: Plugins
In reply to: [Starbox - the Author Box for Humans] How to call the authorbox in PHPHmm, no matter what it always forces itself to the bottom. No matter where I move it in the code it [the custom one] just sticks in the down position at the bottom of the article, even with its clone in the up position at the top. So even if we find a way to kill the clone box, and have the custom retain correct formatting, how do we get it out of the article text. I’ve tried using the same div tags and everything as the location where I want it.
Forum: Plugins
In reply to: [Starbox - the Author Box for Humans] How to call the authorbox in PHPAha! Updated to 1.0.3 and it works, my bad.
However, now the author box displays twice. If I go to my author settings and turn off the box for the author, the “custom” one appears but improperly formatted, like it’s missing a div tag or something. I’m wondering how to just get the custom one on and formatted correctly.
Forum: Plugins
In reply to: [Starbox - the Author Box for Humans] How to call the authorbox in PHPAgain this may be me being a PHP novice, but when I insert it either nothing happens, or if i put it high enough in post.php the rest of the content disappears.
I’m still figuring out the syntax so I added the <?php and ?> before and after it.
<?php add_filter( 'the_content', 'filter_function_name' ); function filter_function_name($content){ if (class_exists('ABH_Classes_ObjController')) { $content .= ABH_Classes_ObjController::getController('ABH_Controllers_Frontend')->showBox(); } return $content; } ?>Still either nothing happens or just the rest of the page disappears. Is there some other setting I need to change, or am I just missing something? Thanks for your help.
Forum: Plugins
In reply to: [Starbox - the Author Box for Humans] How to call the authorbox in PHPQuick question coming from my lack of PHP experience: When I insert it where I want in post.php would it look like:
<?php if (class_exists('ABH_Classes_ObjController')) { echo ABH_Classes_ObjController::getController('ABH_Controllers_Frontend')->showBox(); } ?>or what is the proper formatting? I inputted that and now most of my article text and everything below it is gone.
Forum: Plugins
In reply to: [Starbox - the Author Box for Humans] How to call the authorbox in PHPThanks! You’re the best.
Will try and post back with results.