It's Thomas!
Forum Replies Created
-
Forum: Plugins
In reply to: [Add Meta Tags] Custom title issueI have (had) the same problem as posted by a.s.panchenko in the first post of this thread with wordpress 3.8.1 and the twenty eleven theme version 1.7.
Even Version 2.4.3 of your plugin didn’t fix the issue for me but following the advice from Svelte Design did:As a quick fix to this, I changed the following line of code:
$custom_title = str_replace(‘%title%’, $title, $custom_title);
to
$custom_title = str_replace(‘%title%’, $title, $custom_title).’ | ‘;Which can be found in add-meta-tags.php on line 1778
Would be great if you could add this fix to your next update.
Thanks a lot
Thomas
PS: Great plugin! Keep up the good work ??
Forum: Plugins
In reply to: [My Shortcodes] Hide slug when shortcode is deactivated?Hi David,
thanks so much for releasing an update to fix this issue!
One last question before I mark this thread as solved (and give your plugin a 5 star rating ?? ):
This alternating is also possible with more than two elements with the same slug, I assume? Theoretically, with limitless elements with the same slug – is it not?
Forum: Plugins
In reply to: [My Shortcodes] Hide slug when shortcode is deactivated?David,
do you think you could implement this feature in your plugin: being able to switch between two (or more) shortcodes with the same slug but different contents?
That would be awesome!
Thanks so much
ThomasForum: Plugins
In reply to: [My Shortcodes] Hide slug when shortcode is deactivated?Hi David,
thanks for your fast response and your suggestion. I tried it but it didn’t work:
I created a second shortcode with the same slug and a different html code, hoping that when I switch off the first shortcode and activate the second, then the second html would also be displayed. But it wasn’t – it kept displaying the html from the first shortcode, even if the first one was deactivated and the second was activated.
To be sure, I also tried it exactly as you said: The second shortcode without any html / template, but it still kept displaying the html of the first shortcode…
Hmmm – Could I have done something wrong?