Forum Replies Created

Viewing 40 posts - 161 through 200 (of 205 total)
  • Author
  • in reply to: Error 404 – Page not found #51291
     HDcms
    Participant
    in reply to: Big problems at the display BP 'my groups' #51289
     HDcms
    Participant
    This reply has been set as private.
    in reply to: Error 404 – Page not found #51285
     HDcms
    Participant

    Hi,
    I backed permalinks and disabled all extensions.
    I do not have any display urls.
    I have a blank page with no error message
    I added, one by one, the extensions
    no changes
    I downloaded via ftp theme
    no improvement

    At first I thought it was SEO extension that was causing the problem !!

    In fact I switched in preview mode with the old theme.
    Video archives categories work again !

    This is the first time I have a big issue that disturbs the site
    Thank you for helping me

    in reply to: Error 404 – Page not found #51147
     HDcms
    Participant

    Hello,
    ideas?
    thanks

    in reply to: Big problems at the display BP 'my groups' #50814
     HDcms
    Participant
    This reply has been set as private.
    in reply to: Big problems at the display BP 'my groups' #49668
     HDcms
    Participant

    HI,
    You understand better !?
    This disturbs my members 🙁
    @+

    in reply to: display of the archive article with ACF fields #49521
     HDcms
    Participant

    Hi,
    I replaced

    COPY CODE
    case 'image':
    			default:
    				if ( kleo_get_post_thumbnail_url() != '' ) {
    					echo '<div class="post-image">';
    			
    					$img_url = kleo_get_post_thumbnail_url();
    					$image = aq_resize( $img_url, $kleo_config['post_gallery_img_width'], null, true, true, true );
    					if( ! $image ) {
                            $image = $img_url;
                        }
                        echo '<a href="'. get_permalink() .'" class="element-wrap">'
                            . '<img src="' . $image . '">'
                            . kleo_get_img_overlay()
                            . '</a>';
    					
    					echo '</div><!--end post-image-->';
    				}

    by

    COPY CODE
    	default:
    				$image = get_field('image'); // ok cela fonctionne
                        echo '<a href="'. get_permalink() .'" class="element-wrap">'
                            . '<img src="' . $image . '">' 
                            . kleo_get_img_overlay()
                            . '</a>';				
    				break;

    it seems to work
    I did not understand what use has removed the code.
    I hope this is not a problem! ??

    in reply to: display of the archive article with ACF fields #49465
     HDcms
    Participant

    Hi,
    I spent unresolved! because it remains to do the same for images

    in reply to: Big problems at the display BP 'my groups' #49464
     HDcms
    Participant

    Hi,

    I will try but that’s why I put pictures
    While connected, the member wants to go to “my groups”.
    he clicks for example … membres/herved/groups/my-groups/
    He sees his group as eco-mes-groupes.png :-((
    It must click on the button “Close” on each group to return to normal display

    @+

    in reply to: display of the archive article with ACF fields #48935
     HDcms
    Participant

    HI,

    This is the video that it was easier !! 🙂

    COPY CODE
    .... // modif HD OK   
    				$video = get_field('video');
    				// 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' ) ) { ...

    I still can not recover an image of a picture field ACF
    I replace

    COPY CODE
    echo '<a href="'. get_permalink() .'" class="element-wrap">'
                            . '<img src="' . $image . '">' 
                            . kleo_get_img_overlay()
                            . '</a>';

    with
    `$image = get_field(‘ecran-site’);
    echo ‘<a href=”‘. get_permalink() .'” class=”element-wrap”>’
    . ‘<img src=”‘ . $image . ‘”>’
    . kleo_get_img_overlay()
    . ‘</a>’;`

    in reply to: display of the archive article with ACF fields #48337
     HDcms
    Participant

    Hello,

    Well I have problems. I have
    1) creates a new directory
    wp-content/themes/kleo-child/page-parts
    2) transfer the edited file
    post-content-masonry.php

    There are no video appears

    COPY CODE
    // $k_video .= '<div class="kleo-video-wrap"><video ' . join( ' ', $attr_strings ) . ' controls="controls" class="kleo-video" style="width: 100%; height: 100%;">';
    					$k_video .= '<div class="kleo-video-wrap"><video ' . get_field('video') . ' controls="controls" class="kleo-video" style="width: 100%; height: 100%;">';

    Regards

    in reply to: display of the archive article with ACF fields #47747
     HDcms
    Participant

    HI,
    Thank you 🙂
    I’ll watch.
    I try to centralize all the hacks in functions.php
    The ideal would be to have a function like I did for a post:

    COPY CODE
    function affic_champs_acf_video($content) { /*champs à affichés pour une vidéo */
    $content .='<div class="video, embed-container">';    
    $content .= get_field('video') ;
    $content .='</div>';    
    return $content;
    }
    ...
    if ( $format=== 'video' ) {   
      add_filter('the_content', 'affic_champs_acf_video');  
    }
    in reply to: show less #45775
     HDcms
    Participant

    Hello,

    Not active on the 2.4.
    It will be for next update !??
    Regards

    in reply to: show less #39178
     HDcms
    Participant

    Hi,
    I thought for a moment that you had built my suggestion in the latest version, but not.
    But is what you are interested in another next version !?
    Thanks

    in reply to: excerpt in full article #38280
     HDcms
    Participant

    HI,

    Well I got there but the page display time can be slow 🙁
    Do you have a better solution (especially with kleo function)! ??

    COPY CODE
    add_filter( 'the_content', 'my_the_content_filter', 20 );
    function my_the_content_filter( $content ) {
        if ( is_single() )
            $content = get_the_excerpt() .$content ;
        return $content;
    }

    Regards

    in reply to: show less #38243
     HDcms
    Participant

    Yes, the context is different for sweetDate (although I am reduced head size).
    Forget So here !!, excuse me

    in reply to: show less #38102
     HDcms
    Participant

    +1
    Thanks

    in reply to: excerpt in full article #37863
     HDcms
    Participant

    Hi,
    show on posts list -> Ok
    show on post (http://0cd854a9fd.url-de-test.ws/test-avec-acf-communs-videos/) ->Non ok

    I have tried in functions.php :
    echo $excerpt;
    kleo_excerpt();

    can you help me a little more because I did not understand what you tell me
    sorry
    Regards

    in reply to: excerpt in full article #37516
     HDcms
    Participant

    Hi,

    This article http://0cd854a9fd.url-de-test.ws/test-avec-acf-communs-videos/ has a text in the excerpt.
    I see from the above list but I can not display this theme on a full article

    In functions.php
    echo $excerpt;
    kleo_excerpt();

    @+

    in reply to: new text strings #32388
     HDcms
    Participant

    Hello,

    I have rescanned with Codestyling Localization.

    frontend side, the display stays with “Change Avatar”

    In Codestyling Localization
    there is more than word “avatar”
    i have 2 strings
    My photos: Mes photos
    Change photo: Modifier ma photo

    in reply to: documentation new feature #32196
     HDcms
    Participant

    Thanks

    in reply to: Display category in post #32067
     HDcms
    Participant

    HI,
    Ah ok !
    but actually I did not want to touch the permalinks, because there are duplicate content when an post is in two categories.
    I thought you had activated a new option !!
    @+

    in reply to: new text strings #31914
     HDcms
    Participant

    Hi,

    Thank you for answering my previous question but I added it

    I can not translate the page to change his profile picture:
    a) “Change Avatar”
    or
    b)”Your avatar will be used on your profile and throughout the site. If there is a Gravatar associated with your account email we will use that, or you can upload an image from your computer.”

    At first I tried to “buddypress-fr_FR” but this is the string “Your profile photo will be used on your profile and throughout the site. If there is a Gravatar associated with your account email we will use that, or you can upload an image from your computer.”

    but in fact, you have a different text in the fr_FR.po sweetdate theme
    “Your avatar will be used on your profile and throughout the site. If there is a Gravatar associated with your account email we will use that, or you can upload an image from your computer.”

    1 / I put my translation) or b) with poEdit
    2 / I record locally
    3 / I download under “/ htdocs / wp-content / themes / sweetdate / languages​​”
    4 / I remove the cache and reload the page

    Regards

    in reply to: show blog, menu and breadcrumb #31861
     HDcms
    Participant

    It works 🙂
    great
    thank you

    in reply to: show blog, menu and breadcrumb #31837
     HDcms
    Participant

    Hi,

    4 – I believe you’re asking about changing what’s displayed in the author meta. If that’s the case, you can copy the ‘kleo_entry_meta’ into your /kleo-child/functions.php file and remove the items you dont want displayed.

    I wanted to make the change but I can not find where is the function or file ‘kleo_entry_meta’ !??

    in reply to: first image of the post to view thumbnails #31827
     HDcms
    Participant

    Thanks 🙂
    Beautiful theme,
    good support
    I put 5/5 on CodeCanyon

    in reply to: video thumbnail #30996
     HDcms
    Participant

    Hi,
    It works-)
    You are awesome.
    It was simple but it had to find.
    If I understand you removed in this page, all content related to the case

    box ‘video’:
    box ‘image’:

    Thanks

    in reply to: video thumbnail #30980
     HDcms
    Participant

    Ah actually I had not spoken.
    Before I set post_format = “video” -> no thumbnail display
    Now I just put post_format = “” -> display thumbnail -> http://0cd854a9fd.url-de-test.ws/category/videos/ 🙂

    But I put the video in post_format because I have several ACF fields (video, author …) and benefit the style for post_format = “video” !!

    in reply to: video thumbnail #30961
     HDcms
    Participant

    Hi,

    Thanks but i did not very well explained

    I do not want to use the video field Kleo theme, but the ACF field video because i use other information
    On some themes it works but not on kleo.

    Ideally, a recognition by the theme but at least if I can generate the image “Featured Image” * (media), how is it possible that the theme displays thumbnails in the list of posts

    * Possible with another plugin (https://wordpress.org/plugins/video-thumbnails/) to generate thumbnails including “Featured Image”

    in reply to: activation link #30951
     HDcms
    Participant

    Hi,
    Is this going to be incorporated with the new version ??
    Regards

    in reply to: first image of the post to view thumbnails #30527
     HDcms
    Participant

    Hello,

    > This is a suggestion for new feature 🙂

    > In the meantime if anyone has a good reference for a plugin that works with this theme !?, because according to research MUST be that the theme can accept

    Thanks

    in reply to: first image of the post to view thumbnails #30410
     HDcms
    Participant

    Hi,
    Theme options – Blog – Get Featured image from content;
    I see on Kleo but not sweetdate !!!

     HDcms
    Participant

    Thank you for these solutions (including the image of the category) 🙂
    I preferred integration into the theme or a hack but I look at this

    in reply to: show blog, menu and breadcrumb #29902
     HDcms
    Participant

    1/ yes a link modal connection in the social menu (not used) rather than in the top right menu

    2 / ok I’ll look again
    thank you

    in reply to: show blog, menu and breadcrumb #29883
     HDcms
    Participant

    Hi

    Thank you for your help
    1 / I give up because it was to put the link modal connection. I hope it might give easier access or equivalent version of> 2.0
    2 / I have not succeeded either. If you have additional help?
    3 / ok
    4 / ok

    in reply to: show blog, menu and breadcrumb #29678
     HDcms
    Participant

    HI,
    I see that you answer to other questions but not mine!
    How do you respond?
    I have created 4 questions???
    Regards

    in reply to: show blog, menu and breadcrumb #29335
     HDcms
    Participant

    Hi,
    hank you to answer me

    in reply to: changer #28795
     HDcms
    Participant

    Well I think it is translated into the language files, not the backoffice

    in reply to: changer #28724
     HDcms
    Participant

    +1

    in reply to: documentation of shortcodes #28723
     HDcms
    Participant

    Hi,
    Thank you but I will not use visual composer
    and have documentation as http://docs.intenseplugin.com/Layout_-_Shortcodes/Hover_Box.html

Viewing 40 posts - 161 through 200 (of 205 total)

Log in with your credentials

Forgot your details?