Forum Replies Created

Viewing 40 posts - 81 through 120 (of 205 total)
  • Author
  • in reply to: Displaying a photo of a member with his id #115304
     HDcms
    Participant

    Hi,
    There I am embarrassed.
    No idea plugin update !
    @+

    in reply to: not open the modal box "SIGN UP" #115275
     HDcms
    Participant

    Hello,,

    It’s a good idea ๐Ÿ™‚
    Just that it still opens the same modal popup
    header.php ~ 194

    <li class="header-register-button"><a href="/page-d-exemple/" data-reveal-id="register_panel" class="tiny button radius"><i class="icon-group hide-for-medium-down"></i> <?php _e("SIGN UP", 'kleo_framework'); ?></a></li>

    in reply to: display a random members #112912
     HDcms
    Participant

    Hello,

    “Do you mean at the members directory, show only male if you are a woman and opposite?” Yes
    “Random members do you mean the order?” Yes

    list display without using a search criteria

    Regards

    in reply to: display a random members #112525
     HDcms
    Participant

    http://seventhqueen.com/demo/sweetdatewp/members/

    How :
    1/ to display a random members?
    2/ and opposite sex (only)?

    in reply to: hide information meta #109189
     HDcms
    Participant

    Hello
    ok cache!

    in reply to: How to redirect the member profile ? #97185
     HDcms
    Participant

    @wd7080
    Thanks ๐Ÿ™‚

    in reply to: How to redirect the member profile ? #96253
     HDcms
    Participant

    HI,
    Thank you for this quick response ๐Ÿ™‚
    I hoped a supported by the theme to avoid loading additional plugin ๐Ÿ™

    in reply to: Changing appearance member profile page #90256
     HDcms
    Participant

    Hello,

    Thank you
    I’ll try this code but it becomes suggestions
    1 / integrate option to mask / unmask
    2 / have different layout including vertical menu

    Regards

    in reply to: Like Button for Activity Stream #87725
     HDcms
    Participant

    Hi,
    WP is ulike
    independent
    top Rated
    compatible mycred

    in reply to: Like Button for Activity Stream #84808
     HDcms
    Participant
    in reply to: redirect to the membership level #82722
     HDcms
    Participant

    HI,
    Thanks for your answer.
    I have done several test. It does not work
    Apparently is_page does not work in the child theme function.php !?

    COPY CODE
    function my_page_template_redirect()
    {
        if (is_page(10)) // is_page('groupes') 
        {
         //   wp_redirect( home_url( '/inscription/' ) );
         // wp_redirect('http://127.0.0.1/wordpress/wp_test/inscription/' );
          echo '<h2>PAGE 10</h2>';
          //  exit();
        }
    }
    add_action( 'template_redirect', 'my_page_template_redirect' );
    in reply to: redirect to the membership level #82156
     HDcms
    Participant

    Hi,
    It does not work :

    COPY CODE
    
    global $post;
    $p = $post->ID;
    echo '<br>$p: ' .$p;
    
    $Getid = get_the_ID();
    echo '<br>Getid: ' .$Getid;

    It work:

    COPY CODE
    $url = explode('?', 'http://'.$_SERVER["HTTP_HOST"] . $_SERVER["REQUEST_URI"]);
    $ID = url_to_postid($url[0]);
    echo '$ID: ' .$ID;

    but not:

    COPY CODE
    if ( is_page($ID) ) { 
    echo '$ID: ' .$ID;
    echo '<h2>PAGE 10</h2>';
    //wp_redirect(pmpro_url("levels"));
    //exit;
    }
    

    ??

    in reply to: Kleo 3.07 incompatible #81167
     HDcms
    Participant

    Hi,

    Sorry not seen the last response
    Sure it works on the test site
    I put the changes on the production site:
    style.css
    post-content-masonry

    something else ?

    The page does not display all types of video
    http://www.ecoethique.eu/categories/ressources/videos/
    and the 2nd page -> 404
    http://www.ecoethique.eu/categories/ressources/videos/page/2/

    an idea?

    Regards

    in reply to: display a notice on all buddypress pages #80259
     HDcms
    Participant

    Hi,
    It works
    ๐Ÿ™‚
    Your support is great
    ๐Ÿ™‚
    Thanks

    in reply to: Kleo 3.07 incompatible #79527
     HDcms
    Participant

    HI,

    I understand that you can not spend too much time on this problem.
    I have already contacted the developer of this plugin
    He said that this is due to change with the theme !!

    What is certain is that it worked before.
    Regards

    in reply to: Kleo 3.07 incompatible #79420
     HDcms
    Participant

    Hi,
    It works
    Perhaps a network problem !!?
    @+

    in reply to: Kleo 3.07 incompatible #79358
     HDcms
    Participant
    This reply has been set as private.
    in reply to: Kleo 3.07 incompatible #79251
     HDcms
    Participant
    This reply has been set as private.
    in reply to: Kleo 3.07 incompatible #79043
     HDcms
    Participant

    Hi,
    I would like to have a blog as I had before
    It was possible to play a video on the blog page as
    http://seventhqueen.com/themes/kleo/blog/
    The only thing is that the video from … a video field ACF !
    Thanks

    in reply to: Kleo 3.07 incompatible #78896
     HDcms
    Participant

    Hi,
    ok for 2 /
    I had forgotten !
    Sorry
    Still not display the thumbnail of the video in blog mansonary
    I copied your code above, is that right? :

    COPY CODE
    <?php
    /**
     * The template Masonry blog item
     *
     * @package WordPress
     * @subpackage Kleo
     * @since Kleo 1.0
     */
    ?>
    
    <article id="post-<?php the_ID(); ?>" <?php post_class(array("post-item")); ?>>
    <div class="post-content animated animate-when-almost-visible el-appear">
    
    <?php
    global $kleo_config;
    $kleo_post_format = get_post_format();
    
    /* For portfolio post type */
    if ( get_post_type() == 'portfolio' ) {
        if ( get_cfield( 'media_type' ) && get_cfield( 'media_type' ) != '' ) {
            $media_type = get_cfield( 'media_type' );
            switch ( $media_type ) {
                case 'slider':
                    $kleo_post_format = 'gallery';
                    break;
    
                case 'video':
                case 'hosted_video':
                    $kleo_post_format = 'video';
                    break;
            }
        }
    }
    
    switch ( $kleo_post_format ) {
    
        case 'video':
    
            //oEmbed video
            // **************** DEBUT MODIF HD *****************************
            // init $video = get_cfield( 'embed' );
            $video = get_cfield('video_url');
            // ****************** FIN MODIF HD *****************************
    
            // video bg self hosted
            $bg_video_args = array();
            $k_video = '';
    
            if (get_cfield( 'video_mp4' ) ) {
                $bg_video_args['mp4'] = get_cfield( 'video_mp4' );
            }
            if (get_cfield( 'video_ogv' ) ) {
                $bg_video_args['ogv'] = get_cfield( 'video_ogv' );
            }
            if (get_cfield( 'video_webm' ) ) {
                $bg_video_args['webm'] = get_cfield( 'video_webm' );
            }
    
            if ( !empty( $bg_video_args ) ) {
                $attr_strings = array(
                    'preload="none"'
                );
    
                if (get_cfield( 'video_poster' ) ) {
                    $attr_strings[] = 'poster="' . get_cfield( 'video_poster' ) . '"';
                }
    
                $k_video .= '<div class="kleo-video-wrap"><video ' . join( ' ', $attr_strings ) . ' controls="controls" class="kleo-video" style="width: 100%; height: 100%;">';
    
                $source = '<source type="%s" src="%s" />';
                foreach ( $bg_video_args as $video_type => $video_src ) {
                    $video_type = wp_check_filetype( $video_src, wp_get_mime_types() );
                    $k_video .= sprintf( $source, $video_type['type'], esc_url( $video_src ) );
                }
    
                $k_video .= '</video></div>';
    
                echo $k_video;
            }
            // oEmbed
            elseif ( !empty( $video ) ) {
                global $wp_embed;
                echo apply_filters( 'kleo_oembed_video', $video );
            }
    
            break;
    
        case 'audio':
    
            $audio = get_cfield('audio');
            if (!empty($audio)) { ?>
                <div class="post-audio">
                    <audio preload="none" class="kleo-audio" id="audio_<?php the_id();?>" style="width:100%;" src="<?php echo $audio; ?>"></audio>
                </div>
            <?php
    <?php if ($kleo_post_format != 'quote' && $kleo_post_format != 'link' ) : ?>
    
        <div class="post-header"><!--end post-header-->
    
        <?php if ( $kleo_post_format != 'status' ): ?>
    
            <?php if (kleo_excerpt() != '<p>') : ?>
                <div class="post-info">
    
                    <div class="entry-summary">
                        <?php echo kleo_excerpt(); ?>
                    </div><!-- .entry-summary -->
    
                </div><!--end post-info-->
            <?php endif; ?>
    
        <?php endif; ?>
    
    <?php endif; ?>
    
    <div class="post-footer">
        <small>
            <?php do_action('kleo_post_footer');?>
    
            <a href="<?php the_permalink();? rel="nofollow">"><span class="muted pull-right"><?php _e( "Read more","kleo_framework" );?></span></a>
        </small>
    </div><!--end post-footer-->
    
    <!--end post-content-->
    </article>
    in reply to: Kleo 3.07 incompatible #78724
     HDcms
    Participant

    Hi,
    2/ Before the user could only see the display of a video (for example: http://cb8bf3ad6e.url-de-test.ws/tom-rosenthal-its-ok-official-music-video-2/)
    Now there are more miniature
    How to remove the display of the thumbnail on the article?

    in reply to: Kleo 3.07 incompatible #78709
     HDcms
    Participant

    Hi,
    Sorry but I do not understand what you’re saying!
    What should I do ?
    I upgraded to version 3.0.9. not resolved
    I repeat that it worked before without any code change on my part
    Regards

    in reply to: Kleo 3.07 incompatible #77190
     HDcms
    Participant
    This reply has been set as private.
    in reply to: Kleo 3.07 incompatible #77189
     HDcms
    Participant
    This reply has been set as private.
    in reply to: Kleo 3.07 incompatible #76648
     HDcms
    Participant

    HI,
    Yes you are right !!
    This code was working before a version change
    Will you tell me what is wrong
    Regards

    post-content-masonry.php

    COPY CODE
    			case 'video':
    
    				//oEmbed video
    				// **************** DEBUT MODIF HD *****************************  
    				// init $video = get_cfield( 'embed' ); 
    				$video = get_field('video_url');
    				// ****************** FIN MODIF HD *****************************  
    
    			case 'link':
    			// ******************* DEBUT MODIF HD *****************************  
                             $image = get_field('img-site'); 
    				
    			echo '<a href="'. get_permalink() .'" class="element-wrap">'
                            . '<img src="' . $image . '">' 
                            . kleo_get_img_overlay()
                            . '</a>';
    ....
    			// ******************* FIN MODIF HD *****************************  
    		
    			/*	echo '<div class="inner-content">'
    				. get_the_content()
    				. '</div><!--end inner-content-->';
    				break; */
    ....
    			case 'image':
    			default:
    				if ( kleo_get_post_thumbnail_url() != '' ) {
    					echo '<div class="post-image">';
    			// ******************* DEBUT MODIF HD *****************************  
    					$img_url = kleo_get_post_thumbnail_url();
    
    					$image = get_field('image');
    					/* $image = aq_resize( $img_url, $kleo_config['post_gallery_img_width'], null, true, true, true ); */
                            // ******************* FIN MODIF HD ***************************** 
    ....
    
    in reply to: connection box popup #76041
     HDcms
    Participant

    HI,

    This works great ๐Ÿ™‚
    Thank you ๐Ÿ™‚

    If it’s not too long !! maybe can you say why I did not happen to me that it works. Call in a js file with the child theme :

    I created the file “am_modal_cnx.js”

    COPY CODE
      jQuery(document).ready(function() {
        jQuery(".login_panel").click(function() {
          jQuery("#login_panel").reveal();
        });
      });

    in functions.php

    COPY CODE
    function am_enqueue_scripts() {
        if(!is_admin()){ 
            wp_enqueue_script('scripts', get_stylesheet_directory_uri() . '/_spec/js/am_piwik.js', array(),  NULL, true);
            wp_enqueue_script('scripts', get_stylesheet_directory_uri() . '/_spec/js/am_modal_cnx.js', array());
        }
    }
    add_action('wp_enqueue_scripts', 'am_enqueue_scripts', 101);
    in reply to: setting of each of shortcodes #75519
     HDcms
    Participant

    Hi,
    Yes Thanks

    in reply to: connection box popup #75487
     HDcms
    Participant

    Hi,
    Thanks for your answer.
    I do not want to put this link in a wigdet but in the menu.
    I can not place data-reveal-id=”login_panel”
    http://cb8bf3ad6e.url-de-test.ws/
    Regards

    in reply to: connection box popup #75021
     HDcms
    Participant

    Hello
    OK thank you
    I hope soon
    Good day

    in reply to: setting of each of shortcodes #75020
     HDcms
    Participant

    HI,

    Ok but sad dependence with VC
    @+

    in reply to: Search in a forum of a group #73482
     HDcms
    Participant

    HI,

    (I thought you have answered!)
    I have also put the parameter group forums to “public”
    I applied the method (which I did not):
    https://codex.buddypress.org/getting-started/installing-group-and-sitewide-forums/#c-set-up-group-forums-only

    Everything is working
    Great thank you ๐Ÿ™‚ ๐Ÿ™‚

    in reply to: Search in a forum of a group #73397
     HDcms
    Participant

    Hi,
    Yes I saw it work for you

    Probably but currently the research does not work anymore with the admins!!
    I do not have access to either bbPress menu (back office side, fortunately groups forums work well front-end side). It happened after I do the operations mentioned in previous post ๐Ÿ™ https://archived.seventhqueen.com/forums/topic/search-in-a-forum-of-a-group/#post-73016

    I am completely blocked ๐Ÿ™
    Do you have a procedure (or suggestions) that I restored in a first time: menu bbPress (back office side) ??
    Thanks

    in reply to: Search in a forum of a group #73284
     HDcms
    Participant
    This reply has been set as private.
    in reply to: Search in a forum of a group #73016
     HDcms
    Participant

    Hello,

    Here are made unsuccessful operations:
    * Child theme switch to parent theme
    * Rรฉinstal the theme and the two plugins: BP and bbPress
    * Creation of a repertoire with these two plugins plugins only
    * Repair and BP bbpress with WP tools

    an idea ?
    Regards

    in reply to: Search in a forum of a group #72843
     HDcms
    Participant

    Hello,

    Groups
    http://www.ecoethique.eu/groupes/
    Ok, search with the word “test”

    Forum “Groupe test”
    http://www.ecoethique.eu/groupes/groupe-test-prive-1060130669/forum/
    no result with a member subscriber
    hd-test1
    hd-test1
    by cons I see that it works as an administrator !!?

    Thanks for your help.
    This issue lasts for several months but users are increasingly dissatisfied!

    Regards

    in reply to: How match ? #69318
     HDcms
    Participant

    HI,
    Tip but it does not meet the needs expressed by members !!
    They want register their profile in the field “I search” = a man OR a woman ‘

    in reply to: geolocation members with geo MYWP #68608
     HDcms
    Participant

    Hi,
    And ? ;
    2 / is that I can do a map with each BP group ?
    3 / I use PMPro, is it possible to exclude certain categories of members (level1 for example)?

    I give you access as soon as I reinstalled my test site
    thank you

    in reply to: How match ? #68607
     HDcms
    Participant

    Hi,
    How you say !?
    I have members who ask me /
    “I’m a woman and I look for a male or female in the results”
    “I’m a man and I look for a male or female in the results”
    At first, it may be an evolution !
    @+

    in reply to: to show all the links from the top menu #68606
     HDcms
    Participant
    in reply to: to show all the links from the top menu #68320
     HDcms
    Participant

    Hello
    “Hello, you can add those links to your menu in Appearance > Menu then look up and find Screen options. Open it and enable Buddypress.”
    Your theme supports only one menu
    So I do not understand ?

    “Now you can place buddypress specific links to your menu in Menu Page Sidebar โ€œBuddypressโ€
    Not understood, you have an example or a url for documentation
    I can put it in a top menu?

    @+

Viewing 40 posts - 81 through 120 (of 205 total)

Log in with your credentials

Forgot your details?