avner.komarow
Forum Replies Created
-
Forum: Plugins
In reply to: [Toggle The Title] Hello great plugin but i'm getting an error msg belowhpd-fff :
i cant seem to recreate the Warning, but i have a good idea way it’s happening.
please try the to relapse in line 103 this line:function TitleToggler_hide_title($title, $id) {
with this line:
function TitleToggler_hide_title($title, $id = '') {
and let me know if that resolves the problem. if it dose i will add it to the production version.
thanks.Forum: Plugins
In reply to: [Toggle The Title] "(no title)" text on the top of my pageshi
1) try to disable all other plugins.
2) try to switch to one of the default themes (twentyXX)
let me know the results.also please include the following information:
1) what version of WP
2) what version of the plugin?
3) what theme are you using?avner.
Forum: Plugins
In reply to: [Toggle The Title] Hello great plugin but i'm getting an error msg belowhow did i missed this issue? ??
are you working with pages or posts? (this plugin only intended for pages).
if you are working with pages, lets do 2 simple tests (don’t re-enable after each step):
1) try to disable all other plugins.
2) try to switch to one of the default themes (twentyXX)also please include the following information:
1) what version of WP
2) what version of the plugin?
3) what theme are you using?avner.
Forum: Plugins
In reply to: [Toggle The Title] Warning in debug modei don’t think that this warning is related.
it’s just the styling of the meta box on the admin edit screen there is no relation to the front end.Forum: Plugins
In reply to: [Toggle The Title] Warning in debug modehi,
you can use the plugin without any fear – it’s just a warning and the script is working.that said, i don’t like it ether ?? and will fix/check it out.
it will take me a couple of days until i will get around to it but i will defiantly check it out.thanks for letting me know – i will replay here after.
avner.Forum: Plugins
In reply to: [Toggle The Title] Title not in sitemap anyorethis plugin purpose is to completely remove the title from the DOM (and not just hide it via css), on pages VIEW (in_the_loop & post type page and so on).
now, i don’t know how the Yoast sitemap works, but if it looks at the pages on the front-end (not search directly in the db for example), then it will get the pages without the titles. but this the expected behavior. that the all point of the plugin :-).
Forum: Plugins
In reply to: [Toggle The Title] Feature requesthi,
sorry for the late replay, i was seek the past week.
did you managed to do it?Forum: Plugins
In reply to: [Toggle The Title] Feature requesthi,
take a look at:get_template_part( 'templates/single', $post->post_type );
so if the post type is page, then under the folder templates you will probably have a file named single-page.php you need to edit this file, and replace the title with the h1 tags to a call that will echo out the new function you added to you’r functions.php. something like:
print return_page_title_html_block($post);
you can even change the original function to this:
function return_page_title_html_block($post) { $is_page_title_active = get_post_meta($post->ID, $key = 'toggle_page_title', $single = true); if ($is_page_title_active == '' || $is_page_title_active) return '<h1 class="entry-title">' . $post->post_title . '</h1>'; return ' '; }
and then replace all of the section including the h1 tags.
avner.Forum: Plugins
In reply to: [Toggle The Title] Feature requesthi,
please from the faq section:i would like to totally remove the from the dom
You could do something like this:
1) Add this function to your functions.php file on you current theme
function return_page_title_html_block($post) { $is_page_title_active = get_post_meta($post->ID, $key = 'toggle_page_title', $single = true); if($is_page_title_active == '' || $is_page_title_active) return ' ' . $post->post_title . ' '; return ' '; }
2) In your page.php file replace the title with the h1 tags to a call to echoing out the above function –
print return_page_title_html_block($post);
hope this helps ??
Forum: Plugins
In reply to: [Toggle The Title] "Toggle the Title" makes formatting bar disappear in 3.8hi lisa,
happy to help, if you like the plugin please rate it :-).anyways, i guess i can resolve the issue?
avner.Forum: Plugins
In reply to: [Toggle The Title] "Toggle the Title" makes formatting bar disappear in 3.8hi,
i am still waiting for your reply…
avner.Forum: Plugins
In reply to: [Toggle The Title] "Toggle the Title" makes formatting bar disappear in 3.8hi,
i have tested it on my end with wp version 3.8, TinyMCE Advanced 3.5.9.1 and Toggle The Title 1.3 and Twenty Fourteen theme.
everything works fine. the formatting bar did not disappear…take a look: https://s24.postimg.org/oxr6hjrtx/image.png (note the html button on the top right i have added via TinyMCE Advanced)
can you please write down the steps in order in order to recreate the issue?
Forum: Plugins
In reply to: [Toggle The Title] Plugin not working with WP 3.7.1happy to help ?? let me know if you will find a bug.
Forum: Plugins
In reply to: [Toggle The Title] Plugin not working with WP 3.7.1i have tested it on 3.7.1 and it works fine on my end.
are you working with the latest version of the plugin?
also have you tried deactivating all other plugins?
on which theme are you in? a good idea (just for testing purposes) is to try to switch to one of the default themes (twenty XX) with all the other plugins turned off.please update me.
avner.Forum: Plugins
In reply to: [Toggle The Title] Toggle the title not working with Twenty Twelvemy pleasure ??