Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'code'

Viewing 25 results - 2,001 through 2,025 (of 32,459 total)
  • Author
    Search Results
  • neon67
    Participant

    ok ok – fixed a lot of syntax errors. Now the code looks like this and it works

    function add_image_responsive_class($content) {
        global $post;
        $pattern ="/<img(.*?)class=\"(.*?)\"(.*?)>/i";
        $replacement = '<img $1class="$2 img-responsive"$3>';
        $content = preg_replace($pattern, $replacement, $content);
        return $content;
    }
    add_filter ('bbp_get_reply_content', 'add_image_responsive_class');
    add_filter ('bbp_get_topic_content', 'add_image_responsive_class');

    Summary. I got a new picture class – img-responsive. But no new link appeared. How to make it open like a rel prettyPhoto … no ideas yet ..

    A feature is at stake – to allow all BBPforum pictures the last few years to open in a lightbox in full size. worth looking for a solution)

    Robin W
    Moderator

    might be taking out spaces after the $ signs eg

    return $ content;

    should be

    return $content;

    #217328
    MrFent37
    Participant

    I do have that code on those other templates as well, so it works well. You know what though, I just found out that I didn’t have any custom code added to form-topic.php, so that must be how they are creating new topics. SMH. I thought that I had all of the template files customized and that they were somehow creating new posts via URL, RSS, or some other “back door” method. Thanks for your time, you can close this post.

    #217327
    Robin W
    Moderator

    hhmm… not sure how that would prevent the forums being shown

    I’d suggest you add that code to

    form-topic.php and form-reply.php

    #217326
    MrFent37
    Participant

    Ok for example, in the template file loop-single-reply.php, at the bottom, instead of this normal code:

    <div class="bbp-reply-content">
    
    	<?php do_action( 'bbp_theme_before_reply_content' ); ?>
    
    	<?php bbp_reply_content(); ?>
    
    	<?php do_action( 'bbp_theme_after_reply_content' ); ?>
    
    </div><!-- .bbp-reply-content -->
    

    I have custom code wrapped around the bbp_reply_content(); function so that the reply form will only load for my active members:

    <div class="bbp-reply-content">
    
    	<?php do_action( 'bbp_theme_before_reply_content' ); ?>
    	<?php if (((function_exists('wc_memberships_is_user_active_member')) && (wc_memberships_is_user_active_member(get_current_user_id(), 'biotic-pro-membership'))) { ?>
    		<?php bbp_reply_content(); ?>
    	<?php } else {	
    		echo $noaccess;
    	} ?>
    	<?php do_action( 'bbp_theme_after_reply_content' ); ?>
    
    </div><!-- .bbp-reply-content -->
    Robin W
    Moderator

    probably filter on

    add_filter ('bbp_get_reply_content', 'add_image_responsive_class');
    add_filter ('bbp_get_topic_content', 'add_image_responsive_class');
    neon67
    Participant

    Thank you! But I’m looking for a way to apply link: data-rel=”prettyPhoto” target = “_ self” to all available bbpress images. It can be loaded in any way, it doesn’t matter.

    Found the code

    function add_image_responsive_class ($ content) {
        global $ post;
        $ pattern = "/ <img (. *?) class = \" (. *?) \ "(. *?)> / i";
        $ replacement = '<img $ 1class = "$ 2 img-responsive" $ 3>';
        $ content = preg_replace ($ pattern, $ replacement, $ content);
        return $ content;
    }
    add_filter ('the_content', 'add_image_responsive_class');

    but for wordpress. Will it work for bbpress?

    #217319
    Robin W
    Moderator

    you could try this in the custom css part of your theme

    #bbp_stats_widget-2 dt {
    padding-right: 10px;
    }
    #217311
    codestars
    Participant

    Thank you alriknijdam, this was exactly what I needed.

    I improved your code a bit, for example you can use bbp_get_topics_per_page() so the amount of replies per page will always be correct. And you can use bbp_get_root_slug() to dynamically get the root URL of where your forum is located.

    /**
     * Get reply in topic permalink.
     *
     * @param int $reply_id
     * @param int $topic_id
     *
     * @return string
     */
    function custom_get_reply_in_topic_permalink( $reply_id, $topic_id ) {
    
    	$position_raw = bbp_get_reply_position( $reply_id, $topic_id );
    	$position     = str_replace( ',', '', $position_raw );
    	$page_raw     = ceil( $position / bbp_get_topics_per_page() );
    	$page         = $page_raw > 1 ? '/page/' . $page_raw : '';
    
    	$slug = get_post_field( 'post_name', get_post( $topic_id ) );
    
    	return bbp_get_root_slug() . '/topic/' . $slug . $page . '/#post-' . $reply_id;
    }

    Can be used like this:
    <a href="<?php echo custom_get_reply_in_topic_permalink( $reply_id, $topic_id ); ?>">

    Enjoy!

    #217309

    In reply to: Avatar issues

    neon67
    Participant

    try to css:

    #bbpress-forums .widget_display_replies img.avatar, #bbpress-forums .widget_display_topics img.avatar, #bbpress-forums div.bbp-template-notice img.avatar, #bbpress-forums p.bbp-topic-meta img.avatar, #bbpress-forums ul.bbp-reply-revision-log img.avatar, #bbpress-forums ul.bbp-topic-revision-log img.avatar
    {display:none !important;}
    #217300

    In reply to: Moving Breadcrumbs

    andyinspired
    Participant

    Thank you, works great, it was indeed page.php.

    However, I’m trying to display the page title as well using:

    <?php the_title(); ?><?php bbp_breadcrumb(); ?>

    It works on all child pages but not on the homepage, I’ve also tried adding it to the index.php file but without success. I know the breadcrumbs won’t display there I just want the title there to keep it consistent with the rest of the site.

    Any ideas?

    #217287

    In reply to: Moving Breadcrumbs

    Robin W
    Moderator

    if you want the bbpress breadcrumb in the forums, then you would need to find out which theme template astra is using to display the forum page.

    You would then use this template and rename to bbpress.php and add the breadcrumb back which is what I think the first link you quoted was trying to do.

    This plugin will tell you which tempate is being used

    What The File

    and then (presuming you are using a child theme) you would copy that template (quite often page.php) and rename it bbpress.php.

    you would then add

    <div class="truebreadcrumbs"><?php bbp_breadcrumb(); ?></div>

    in the appropriate place in that file

    #217286

    In reply to: Moving Breadcrumbs

    andyinspired
    Participant

    I’m using the Astra theme (https://wpastra.com/), I’m comfortable writing CSS and editing PHP code. Just wasn’t sure if there was a filter I could use or whether I need to edit a template?.

    Thanks.

    #217276

    In reply to: Moving Breadcrumbs

    Robin W
    Moderator

    looking at that suggestion, not sure what 1 & 2 are trying to do – not a section I wrote !

    so to move them out of bbpress, then yes, use css and do this

    div.bbp-breadcrumb {
     display: none; /*this will hide all breadcrumbs*/
     }

    put this in your theme’s custom css file.

    The other part will be theme dependant – are you creating a theme or using an existing one?

    #217273
    andyinspired
    Participant

    Hi,
    I’m trying to move the breadcrumbs out of the forum container and to the top of the page as explained in the codex here:
    http://codex.bbpress.org/layout-and-functionality-examples-you-can-use/#7-how-can-i-remove-all-the-breadcrumbs-from-the-templates-and-set-them-at-the-top-of-the-page

    However, if I create a bbpress.php file (or copy the one from the plugins folder) in the root of my child theme it breaks the forum completely!.

    Any help appreciated!

    Thanks.

    #217271
    Robin W
    Moderator

    the easiest way is

    bbp style pack

    once activated go to

    dashboard>settings>bbp style pack>Topics Index Styling and tick item 16 don’t show this message

    if you want to do it using FTP then

    find
    wp-content/plugins/bbpress/templates/default/bbpress/feedback-no-topics.php

    transfer this to your pc and remove

    <div class="bbp-template-notice">
    	<ul>
    		<li><?php esc_html_e( 'Oh, bother! No topics were found here.', 'bbpress' ); ?></li>
    	</ul>
    </div>

    and save (this file must exist, but we just make it empty!)

    create a directory on your theme called ‘bbpress’
    ie wp-content/themes/%your-theme-name%/bbpress

    where %your-theme-name% is the name of your theme

    Then transfer the file you saved above and put in in the directory called bbpress that you created above, so you end up with
    wp-content/themes/%your-theme-name%/bbpress/feedback-no-topics.php

    bbPress will now use this template instead of the original

    #217218
    Robin W
    Moderator

    my mistake should be

    main a {
    	text-decoration: underline !important;
    }
    a.bbp-topic-permalink { 
            text-decoration: none !important;
    }
    #217216
    uksentinel
    Participant

    removed all CSS code and replaced it with you code as above, alas this did not work, maybe an conflict with theme ?

    #217214

    In reply to: User Statistics

    Robin W
    Moderator

    Anyone coming new to this thread, I have added a revised version of this plugin to my site which can be downloaded from

    bbpress-improved-statistics-users-online

    This plugin is one which WordPress withdrew as it violated their guidelines (suspected to be listing users without login, but not certain).

    You can download and use, but I offer no support or warranty that this code works !

    #217213
    Robin W
    Moderator

    ok your code is

    main a {
    	text-decoration: underline !important;
    	a.bbp-topic-permalink { text-decoration: none: !important;
    	}: ;
    }

    it should be

    main a {
    	text-decoration: underline !important;
    }
    a.bbp-topic-permalink { 
            text-decoration: none: !important;
    }
    #217212
    uksentinel
    Participant

    and new code is still in

    #217210
    uksentinel
    Participant

    Yes, original code is still there, I did notice when I pasted in the new CCS code, the a.bbp-topic-permalink changed to a red colour ?

    #217208
    uksentinel
    Participant

    Hi Robin

    I placed code both above and below original CSS alas did not work, I assume because original css has priority ?

    #217203

    In reply to: User Statistics

    Robin W
    Moderator

    so in the statsistics plugin you are changing

    $latest_user = get_users(
                    array(
                        'number' => 1,
                        'fields' => array("user_login", "ID", "display_name"),
                        'orderby' => "registered",
                        'order' => "DESC",
    		'meta_key' => 'wp-approve-user',
    		'meta_value' => '1'
                    )
                );

    to

    //set up $args with core arguments needed
    $args =  array(
                        'number' => 1,
                        'fields' => array("user_login", "ID", "display_name"),
                        'orderby' => "registered",
                        'order' => "DESC",
    		) ;
    		
    //add additional meta data to $args if wp-approve-user is active
    if (class_exists ('Obenland_Wp_Approve_User')) {
    	$args ['meta_key'] = 'wp-approve-user' ;
    	$args ['meta_value'] = '1' ;
    }	
    
    //then do the lookup
    $latest_user = get_users($args) ;
    
    #217199

    In reply to: User Statistics

    Robin W
    Moderator

    ok, so final amendment needed, as if you deactivate wp-approve-user then the latest user will be forevermore the last one you approved before decativating the plugin.

    If you open the wp-approve-plugin you’ll see the core file wp-appprove-user.php

    open this and you’ll see a line 29 which says

    class Obenland_Wp_Approve_User extends Obenland_Wp_Plugins_V4 {

    so we know that the wp-approve-plugin sets up a class called ‘Obenland_Wp_Approve_User’, so we can use the existence of this class to know if wp-approve-use is active or not.

    This is common to many plugins and a good way to ensure parts of code that use another plugin only fire if that plugin is active.

    so now we can change the ‘get_uses’ to only add the meta_data is the class exists

    //set up $args with core arguments needed
    $args =  array(
                        'number' => 1,
                        'fields' => array("user_login", "ID", "display_name"),
                        'orderby' => "registered",
                        'order' => "DESC",
    		) ;
    		
    //add additional meta data to $args if wp-approve-user is active
    if (class_exists ('Obenland_Wp_Approve_User')) {
    	$args ['meta_key'] = 'wp-approve-user' ;
    	$args ['meta_value'] = '1' ;
    }	
    
    //then do the lookup
    $latest_user = get_users($args) ;
Viewing 25 results - 2,001 through 2,025 (of 32,459 total)
Skip to toolbar