avner.komarow
Forum Replies Created
-
Forum: Plugins
In reply to: [Toggle The Title] Quick Edit Option Marvelous Job!!that’s a great idea!
unfortunately i have a lot of stress at work for at least the upcoming month, but the moment i will have some free time i will do my best to code it :-).Forum: Plugins
In reply to: [Toggle The Title] Does not seem to want to keep setting savedover a month with no replay – i am resolving the issue.
Forum: Plugins
In reply to: [Toggle The Title] Eliminating the original title space (redux)its been 2 weeks with no replay, i am resolving the issue.
Forum: Plugins
In reply to: [Toggle The Title] Does not seem to want to keep setting savedhi,
first of all, an apology – sorry it took me a week to replay.now, it sounds like a theme issue to me (i am assuming that you are using a static page for homepage)
the theme builder need to use the_title() or wp_title() or $post_id->post_title and so on just as long that you are getting the title via wp standard internal functions it will work.
this way, every theme should be compatible unless the author decided not to work with the wp standard functions….i can give you a quick workaround:
1. go to edit a page
2. at the top is a “Screen Options” panel link, on the Top far right side just under “Howdy & your name” click on it
3. make sure that Custom Fields is enabled
4. search in the current edited page for the “Custom Fields” that is now visible and there should be a failed with the name “toggle_page_title“
now if you like to show page title put 1 as the value and click update. if like to hide it put 0 and click update.Forum: Plugins
In reply to: [Toggle The Title] Eliminating the original title space (redux)try replase to this function in functions.php:
function return_page_title_html_block($post) { $title_to_return = '<h1 class="entry-title">" title="' .printf(esc_attr__('Permalink to %s', 'catchevolution' ), the_title_attribute('echo=0')) .'" rel="bookmark">'. $post->post_title .'</h1>'; $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 '' .$title_to_return . ''; return ' '; }
and completely replace this code (all of it):
<h1 class="entry-title">" title="<?php printf( esc_attr__( 'Permalink to %s', 'catchevolution' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php the_title(); ?></h1>
with this one:
print return_page_title_html_block($post);
Forum: Plugins
In reply to: [Toggle The Title] Eliminating the original title space (redux)take a look at:
<?php get_template_part( 'content', 'page' );
so i guess you need to edit “content-page.php“. and there replace it :-).
Forum: Plugins
In reply to: [Toggle The Title] Eliminating the original title space (redux)hi
please try to copy and paste (with tick marks and all) this:
1.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.
print return_page_title_html_block($post);
does it help?
Forum: Plugins
In reply to: [Toggle The Title] Plugin Not Workinghi,
sorry i missed this post. it sounds like a theme issue, the theme builder need to use the_title() or wp_title() or $post_id->post_title and so on just as long that you are getting the title via wp standard internal functions it will work.
this way, every theme should be compatible unless the author decided not to work with the wp standard functions….Forum: Plugins
In reply to: [Toggle The Title] Autosave on change title status?for every change in the ttt select box it will automatically do update post or “Publish” (depending upon state) the current edited post in order to save the current selected value.
Forum: Plugins
In reply to: [Toggle The Title] Warning in debug modefixed in 1.4
Forum: Plugins
In reply to: [Toggle The Title] Hello great plugin but i'm getting an error msg belowadded the above fix to 1.4…
Forum: Plugins
In reply to: [Toggle The Title] "(no title)" text on the top of my pagesno replay for over a month – so i am resolving the issue.
Forum: Plugins
In reply to: [Toggle The Title] Hello great plugin but i'm getting an error msg belowhi HiveError
thanks for the update! ?? this is a tremendous help because for some reason i can’t recreate the big locally on my machine.
i will upload a new version as soon as i can that will include some other minor updates.Forum: Plugins
In reply to: [Toggle The Title] Warning in debug modeForum: Plugins
In reply to: [Toggle The Title] Incompatible with a couple of themeshi,
the theme builder need to usethe_title()
orwp_title()
or$post_id->post_title
and so on just as long that you are getting the title via wp standard internal functions it will work.
this way, every theme should be compatible unless the author decided not to work with the wp standard functions….