FreeWPress
Forum Replies Created
-
Ok thanks for your time…
Hi, header is this:
<html xmlns="https://www.w3.org/1999/xhtml" <?php language_attributes(); ?>>
Theme is itheme2 by themify
When i activate social seo it change how mi first topic here!!
Yes i confirm issue was resolve with this code… Good!!
I hope for the future you implements other wonderfull functions…
Forum: Plugins
In reply to: [Buddy-bbPress Support Topic] title tag do not change in resolvedThanks you for your time and your plugin.. i love it!!
my programs for php give syntax error when i paste this code… I thik this is correct code:
<?php if( function_exists( 'bpbbpst_bbpress_change_topic_title' )) { remove_filter('the_title', 'bpbbpst_bbpress_change_topic_title', 99, 2 ); } ?> <?php if( function_exists( 'bpbbpst_bbpress_change_topic_title' )) { add_filter('the_title', 'bpbbpst_bbpress_change_topic_title', 99, 2 ); } ?>
Is correct for you?
Hi, i think issue is this code:
<?php remove_filter('the_title', 'bpbbpst_bbpress_change_topic_title', 99, 2 ); ?> <div id="crumbs" class.... <?php add_filter('the_title', 'bpbbpst_bbpress_change_topic_title', 99, 2 ); ?>
I have put this in header to remove a double title for breadcrumbs…
I think when i deactivate plugin this code generate title error…
Have you other method to remove double”resolved” text from breadcrumbs??
Forum: Plugins
In reply to: [Buddy-bbPress Support Topic] title tag do not change in resolvedYes.. is this…
Hi, i have made this to solve pagination issue:
add_filter( 'aioseop_title', 'freewpress_fix_titles' ); function freewpress_fix_titles( $title ) { if ( is_post_type_archive() ) { if( is_paged() ) { $paged = (get_query_var('paged')); $paginate = " - pagina ".$paged; } global $aiosp; $title = $aiosp->get_original_title() . " | " . get_bloginfo( "name" ) . $paginate; } return $title; }
It work fine for paginate archive…
Thanks ??
Dear Peter..
Your support is n°1 problems was resolved, it work fine…
Yes i have latest version of your good plugin… One questions.. for future version i must to remove this fix from my function.php?
If is possible add a form for write description, because no description exist in this two pages…
I see also in source code of my page <link rel=’next’ href=’https://www.mysite.com/forums/page/2/’ /> but i do not have page 2…. is single page
For topics have a page numer 2 and 3 but do not show page 2.. page 3.. in title page… this is a problem for duplicate title… ??
In my case problems is located in add_filter i have changed in signature and attachments like this:
i have modified this for attachments:
Fromadd_filter('bbp_get_reply_content', array(&$this, 'embed_attachments'), 100, 2); add_filter('bbp_get_topic_content', array(&$this, 'embed_attachments'), 100, 2);
at
add_filter('bbp_get_reply_content', array(&$this, 'embed_attachments'), 10, 2); add_filter('bbp_get_topic_content', array(&$this, 'embed_attachments'), 10, 2);
and this for signature:
From
add_filter('bbp_get_topic_content', array(&$this, 'reply_content'), 10000, 2); add_filter('bbp_get_reply_content', array(&$this, 'reply_content'), 10000, 2);
at
add_filter('bbp_get_topic_content', array(&$this, 'reply_content'), 99, 2); add_filter('bbp_get_reply_content', array(&$this, 'reply_content'), 99, 2);
Now it work for first topic and all other replies… I don’t know why i have this issue, but for future upgrade of your excellent plugin is possible to look if have this problems??
Another question… If you do not change this value for future version, is possible to set this value in my custom function.php? If yes.. How?
Thanks…
I confirm…!! Attachments not show in first post.. and i have also gdbpress signature and not show signature… Problems are only in first post, for other post below is all ok!!
No signature and no attachments in first post!!
Hi…
I have same issue… anyone have solutions??
Thanks!!!
Hi Problem solved, update via wordpress is ok, now version is 1.5.8…
I have downloaded version from here and open with editor… Version in download is 1.5.7 not 1.5.8…
Forum: Plugins
In reply to: [GD bbPress Tools] User signature with theme my login frontend profile pageOk, just resolved…
Open file /code/mods/signature.php go to line 51 and find:
if (!is_admin()) return; you can modify it:
if (!is_admin() && !is_page(‘your-profile-page’)) return;
change your-profile-page with the slug of the profile page wich you have made…
Now the signature form is showed also in frontend profile page… You can also modify the signature_profile.php file to add a Signature length is limited span wich is not present in normal form…
Is possible for the future update to have possibility to show signature form in other frontend profile page?
Thanks…