Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #979296

    Hello ,

    the Main Menu is not displaying as a mobile/burger menu on mobile screens. I’ve checked the Main Menu settings in Enfold Child Theme options and nothing seems amiss. Can you have a look and let me know what could be causing this?

    Thanks

    #979712

    Hey DS_Distribution,

    It looks like your site is in under construction mode, please provide details in private so that we can view it.

    Best regards,
    Rikard

    #980135

    Hello Rikard,
    Problem solved for burger menu ,but now i have problem ,i can’t increase the excerpt lenght in the blog
    look please at articles blogs :http://dev.ds-distribution.fr/culturel/
    yet I have tried many methods

    thnaks you very much for reply

    #980212

    Hi,

    Have you tried the following:

    Best regards,
    Jordan Shannon

    #980261

    Thank you,
    I put this code but now the blog does not display the buttons Read more
    Link :http://dev.ds-distribution.fr/culturel/
    i want to display all button in same line

    #980263

    function custom_excerpt(){
    ?>
    <script>
    // trim sentence by 22 words
    function trimByWord(sentence,wordcount = 22) {
    var result = sentence;
    var resultArray = result.split(” “);
    if(resultArray.length > wordcount){
    resultArray = resultArray.slice(0, wordcount);
    result = resultArray.join(” “) + “…”;
    }
    return result;
    }
    jQuery(window).load(function(){
    jQuery(‘.post-entry’).each(function() {
    jQuery(“.entry-content “).text(function(index, currentText) {

    return trimByWord(currentText);
    });
    jQuery(“.entry-title a”).text(function(index, currentText) {
    return trimByWord(currentText,15); // trim title by 15 words
    });
    });
    });
    </script>
    <?php
    }
    add_action(‘wp_head’, ‘custom_excerpt’);

    #981236

    Hi DS_Distribution,

    Best regards,
    Victoria

Viewing 7 posts - 1 through 7 (of 7 total)
  • You must be logged in to reply to this topic.