Forum Replies Created
-
In reply to: topic font color & size
Never seen, sorry.
Down
In reply to: Make creating topics form full width?Send me a mail
I will try to have a look,
Pascal.In reply to: BBpress don’t know me as adminThen first create another admin, login as that one and check if you see ‘Forums’.
If not, then we continue to check
If you do see it from that 2nd account, then remove, save and give back the keymaster role to your main account.Pascal.
In reply to: BBpress don’t know me as admini’ve no acces in the forum settings
Do you mean you do not see ‘Forum’ in your dashboard ? Or you cannot change any settings ?
Can you ask another admin to remove your keymaster role, save and then set it back ?Thanks,
Pascal.In reply to: language changeHi,
bbPress translation files comes automatically and the ‘search’ button is in the translated list:
value="<?php esc_attr_e( 'Search', 'bbpress' ); ?>"
But I see you also have ‘topics’, ‘posts’ and ‘freshness’, so nothing is translated.Can you please tell me:
1) in what language locale your WordPress is running in ?
Dashboard > Settings > General Settings > Site Language2) What version of WordPress and bbPress you are using ?
Pascal.
In reply to: Make creating topics form full width?Hi John,
Is it a public page ? Then please share a link to it so we can see.
Pascal.In reply to: Sorting Topic LoopIf not too long, you can put it between backquotes.
So click the ‘code’ button (one but last button in the box where you type your reply), paste your code, then click that same button that will now be called ‘/code’If it too long, paste it somewhere else like pastebin or github and just put a link.
In reply to: Updating my importIf you could try to just deactivate it and see (just adding // in front of the 3 ‘add_filter’, just to be sure.
For the Optimizer, did it somewhere indicate plugins that were slow ?
Pascal.
In reply to: Sorting Topic LoopHi,
Interesting topic, I would be interested in your queries and how you show it 🙂
For the dropdown, how about something like this:
function casiepa_template_before_topics_loop() { ?> <select name="menu1" id="menu1"> <option value="">Order by...</option> <option value="http://www.example.com/?order=date">By date</option> <option value="http://www.example.com/?order=pop">Nbr of Replies</option> </select> <script type="text/javascript"> var urlmenu = document.getElementById( 'menu1' ); urlmenu.onchange = function() { window.open( this.options[ this.selectedIndex ].value ); }; </script> <?php }; add_action( 'bbp_template_before_topics_loop', 'casiepa_template_before_topics_loop', 10, 0 );
In reply to: Updating my importNot sure what timezone you are in, so I wait for your info.
Can you also tell me if you ever added something in your functions.php as extra function ? If so, can you paste it here ?
Pascal.In reply to: and tags added automatically, everywhere…If you could confirm the above ?
And then, if you put the below in your functions.php, what do you get ?function casiepa_custom_pagination( $args ) { $args['type'] = 'list'; // try also 'plain' $args['after_page_number'] = ' '; return $args; } add_filter( 'bbp_topic_pagination', 'casiepa_custom_pagination' );
In reply to: and tags added automatically, everywhere…This is the pagination for a list of topics, right ? (and not for the search).
EDIT: and you did NOT copy a bbPress template into your own (child) theme but use the standard php files ?
In reply to: How to edit the ‘reply’ link anchor in post headers?Hi,
For sure NEVER edit files under bbPress, otherwise you loose it when there is an upgrade.
If you could give me an example of what you get now and what you would need to get, I could maybe help you further. Or a link to your site and then what would need to be changed.
Thanks, Pascal.In reply to: and tags added automatically, everywhere…I think a link to the site showing it would be easier for us to help.
Pascal.In reply to: Moving Topic Edit Logs below SignatureDo you really want to show the revision logs ? I would just remove them …
In reply to: Updating my importCould you try with a profiler plugin like https://wordpress.org/plugins/p3-profiler/ ? If it gives you any indication of what plugin is so slow ?
Don’t forget to uninstall it when you’re completely done (it takes unnecessary resources)Pascal.
In reply to: Updating my importThere has to be something. Any possibility to list me all the plugins ?
In reply to: Adding custom forum sections (blocks)Like this ? https://robkkdev.wordpress.com/portfolio/
@robkk , using your stuff 🙂In reply to: Updating my importOr ‘views’ or ‘hit counts’ ?
In reply to: Updating my importCould be ok, try to see logs or so.
You have any plugins like ‘unread posts’ or ‘quotes’ or something that would calculate something like voices or posts to display it somewhere ? If so, try to deactivate.
And what is your PHP and MySQL version ? (if you don’t know, you can install my bbP Toolkit that shows it to you)
In reply to: Updating my importLoading seems to work fine.
For submitting I remember having helped somebody else with that, it was a plugin that blocked for sending out the emails. What bbPress or email related plugins do you have ?
Pascal.In reply to: Updating my importHave you run the repair tools after your import ?
If it’s a public site, can you please post the link ?Thanks, Pascal.
In reply to: Updating my importDid you export it to a file ? The only thing I see is that you could delete in your export file everything from before the date on which you already imported and then import the changed file.
There is no unique identifier that is being checked, so everything that is in the import file or DB will just be imported.
Pascal.
In reply to: Updating my importSo far, none, sorry.
In reply to: Topics need to be marked as SolvedGreat,
thanks for pointing to that thread.
Pascal.