Pascal Casier (@casiepa)

Forum Replies Created

Viewing 25 replies - 601 through 625 (of 1,398 total)
  • @casiepa

    Moderator

    Never seen, sorry.

    Down

    @casiepa

    Moderator

    Send me a mail
    I will try to have a look,
    Pascal.

    @casiepa

    Moderator

    Then 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.

    @casiepa

    Moderator

    i’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 change

    @casiepa

    Moderator

    Hi,
    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 Language

    2) What version of WordPress and bbPress you are using ?

    Pascal.

    @casiepa

    Moderator

    Hi John,
    Is it a public page ? Then please share a link to it so we can see.
    Pascal.

    In reply to: Sorting Topic Loop

    @casiepa

    Moderator

    If 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 import

    @casiepa

    Moderator

    If 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 Loop

    @casiepa

    Moderator

    Hi,

    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 import

    @casiepa

    Moderator

    Not 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.

    @casiepa

    Moderator

    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'] = '&nbsp;';
    
    	return $args;
    }
    add_filter( 'bbp_topic_pagination', 'casiepa_custom_pagination' );

    @casiepa

    Moderator

    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 ?

    @casiepa

    Moderator

    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.

    @casiepa

    Moderator

    I think a link to the site showing it would be easier for us to help.
    Pascal.

    @casiepa

    Moderator

    Do you really want to show the revision logs ? I would just remove them …

    In reply to: Updating my import

    @casiepa

    Moderator

    Could 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 import

    @casiepa

    Moderator

    There has to be something. Any possibility to list me all the plugins ?

    @casiepa

    Moderator

    Like this ? https://robkkdev.wordpress.com/portfolio/

    @robkk
    , using your stuff 🙂

    In reply to: Updating my import

    @casiepa

    Moderator

    Or ‘views’ or ‘hit counts’ ?

    In reply to: Updating my import

    @casiepa

    Moderator

    Could 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 import

    @casiepa

    Moderator

    Loading 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 import

    @casiepa

    Moderator

    Have 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 import

    @casiepa

    Moderator

    Did 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 import

    @casiepa

    Moderator

    So far, none, sorry.

    @casiepa

    Moderator

    Great,
    thanks for pointing to that thread.
    Pascal.

Viewing 25 replies - 601 through 625 (of 1,398 total)