Forum Replies Created

Viewing 30 posts - 24,421 through 24,450 (of 35,179 total)
  • Author
    Posts
  • Hi,
    That is great news!
    Glad we were able to help, we will close this now. Thank you for using Enfold.

    For your information, you can take a look at Enfold documentation here
    For any other questions or issues, feel free to start new threads under Enfold sub forum and we will gladly try to help you :)

    Best regards,
    Mike

    in reply to: Permission on the product in woocommerce #1035396

    Hi,
    The settings in the woocommerce > general options, are set for your entire store, while the plugin allows you to make these options for individual products.
    So if you want to set different options for each product, then the plugin may be best for you.

    Best regards,
    Mike

    in reply to: Code Html u Java #1035393

    Hi,
    Ich sehe, ja, der Code zum Erstellen dieser Seiten kann zu Enfold hinzugefügt werden. Die Skripte, die sich im Kopf des HTML-Codes befinden müssen, können mit dieser Funktion in der Datei functions.php in Appearance> Editor:

    
    function add_custom_code(){
    ?>
    YOUR CODE GOES HERE 
    <?php
    }
    add_action('wp_head', 'add_custom_code');

    und der Seitencode, wie folgt:

    <div class="yf-main-wrapper yf-banner-wrapper" id="YFPage"></div>

    kann mit einem” Code Block “-Element auf Ihrer Seite oder hinzugefügt werden Sie können einen WordPress Shortcode erstellen

    — Translated with Google —

    I see, yes the code to create these pages can be added to Enfold, the scripts that need to be in the head of the HTML can be added with this function in the functions.php file in Appearance > Editor:

    
    function add_custom_code(){
    ?>
    YOUR CODE GOES HERE 
    <?php
    }
    add_action('wp_head', 'add_custom_code');

    and the page code, such as this:

    <div class="yf-main-wrapper yf-banner-wrapper" id="YFPage"></div>

    can be added with in a “code block” element on your page, or you can create a WordPress Shortcode

    Best regards,
    Mike

    Hi,
    So you would like 2 columns above and 1 column below, like in this screenshot:
    2018-11-19-205652
    This was done by adding this code to the end of the functions.php file in Appearance > Editor:

    function av_woo_tabs_below() { 
    remove_action(    'woocommerce_after_single_product_summary', 'woocommerce_output_product_data_tabs', 1 );
    add_action(    'woocommerce_after_single_product_summary', 'woocommerce_output_product_data_tabs', 20 );
    } 
    add_action( 'init', 'av_woo_tabs_below');

    Best regards,
    Mike

    in reply to: Forms #1035387

    Hi,
    Thanks for the login, I made some adjustments, Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: How can i add image or text header right side ? #1035385

    Hi,
    I’m not sure I understand, what do you mean it doesn’t show correctly at 100% but 90% and below is correct?
    What is the screen width of 100%?

    Best regards,
    Mike

    in reply to: change author of Portfolio item #1034989

    Hey briandeeney,
    This is something I had not noticed, that there is no author for portfolio items. But I did find a solution that is reported as working: Portfolio Items Author

    Best regards,
    Mike

    in reply to: Code Html u Java #1034986

    Hey Martin Reiner,
    Vielen Dank für Ihre Kontaktaufnahme. Wenn Sie “Fremdcodes” sagen, meinen Sie fremde Zeichen, wie in einer anderen Sprache? Ich habe mir Ihren Link angeschaut, aber nichts gesehen, das über “Fremdcodes” gesprochen hat. Bitte versuchen Sie, etwas mehr zu erklären, Möglichkeit mit Screenshots.

    — Translated with Google —

    Thank you for contacting us, when you say “foreign codes” do you mean foreign characters, as in a different language?
    I took a look at your link, but didn’t see anything that talked about “foreign codes”
    Please try to explain a little more, possibility with screenshots.

    Best regards,
    Mike

    in reply to: Permission on the product in woocommerce #1034984

    Hey fabiomagliozzi,
    Perhaps a plugin such as this one would help: Product Country Restrictions

    Best regards,
    Mike

    in reply to: Main Menu colored underline #1034981

    Hey Joe,
    Please try this code in the General Styling > Quick CSS field:

    .avia-menu-fx {
        height: 4px !important; 
    }

    Please adjust to suit, then clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Modify Post titles to use two lines with hard return #1034978

    Hey webworm72,
    There is not a built-in way to do this, but here is a article I found that may help: How to Split Post or Page Title in WordPress

    Best regards,
    Mike

    Hi,
    Glad we were able to help, we will close this now. Thank you for using Enfold.

    For your information, you can take a look at Enfold documentation here
    For any other questions or issues, feel free to start new threads under Enfold sub forum and we will gladly try to help you :)

    Best regards,
    Mike

    in reply to: avia-menu #1034963

    Hey cTes,
    Sorry there is not an easy way to reproduce this because the menu items have extra attributes that are not included with enfold.
    You may be able to find a plugin that can create this for you, or you could find a freelancer to modify your menu and write the css to create this for you, but it would take more time and coding than we can provide here, within the scope of our support.
    Thank you for understanding.

    Best regards,
    Mike

    in reply to: Consulting theme menu #1034961

    Hey collinssafety,
    Thank you for your new thread, it seems that you have found the big blue button at the top of the forum with the text:
    Can’t find a solution to your problem? Open a new thread
    But I can see that if you are reading a thread this button is not visible, in this case please look at the breadcrumbs and click the “Enfold” to be taken back to the main forum.

    I didn’t find the css to create a accordion style menu, so I worked this out for you by installing the demo on my localhost and adding a couple of menu items under one, Please try this code in the General Styling > Quick CSS field:

    .av-main-nav li:hover > ul {
        top: 100% !important; 
        left: 0% !important; 
        position: relative !important; 
        width: 100% !important; 
    }
    .header_color ul.sub-menu li {
        border-width: 0px !important; 
    }
    .av-main-nav > li > ul.sub-menu {
        border-top-width: 0px !important; 
        border-top-style: none !important; 
    }
    .av-main-nav ul.sub-menu li a {
        border-right-style: none;
        border-right-width: 0px;
        border-left-style: none;
        border-left-width: 0px;
    }
    .av-main-nav ul.sub-menu li:last-child > a {
        border-bottom-style: none;
        border-bottom-width: 0px;
    }
    
    .html_header_sidebar #header .av-main-nav ul.sub-menu > li > a {
        border-bottom-style: solid;
        border-bottom-width: 1px;
    }

    If this fails, please try this code in the WordPress > Customize > Additional CSS field.
    If this still fails, then include your url so we can take a closer look.

    Best regards,
    Mike

    Hey Edsbjerg,
    Please try this code in the General Styling > Quick CSS field:

    #footer ul#menu-main-menu.menu a,#footer .menu-submenu-container a {
    font-size:18px !important;
    font-weight: 400 !important; 
    }

    Please clear your browser cache and check.
    If this fails please try the same code in the WordPress > Customize > Additional CSS field

    Best regards,
    Mike

    Hi,
    Glad we were able to help, we will close this now. Thank you for using Enfold.

    For your information, you can take a look at Enfold documentation here
    For any other questions or issues, feel free to start new threads under Enfold sub forum and we will gladly try to help you :)

    Best regards,
    Mike

    Hi,
    Please try increasing your PHP memory: Fix: WordPress Memory Exhausted Error – Increase PHP Memory

    This is done at your webhost, but to gain WP access, and If you have a default theme in the theme folder, try renaming “enfold” via ftp to something else, WP will switch to the default theme automatically. Then you can login.

    Best regards,
    Mike

    in reply to: How can i add image or text header right side ? #1034922

    Hi,
    Do you mean that you want to have someone look at the Safari issue above before adjusting the menu for 768px though 1160px ?

    Best regards,
    Mike

    in reply to: curved fixed header #1034920

    Hi,
    Glad we were able to help, we will close this now. Thank you for using Enfold.

    For your information, you can take a look at Enfold documentation here
    For any other questions or issues, feel free to start new threads under Enfold sub forum and we will gladly try to help you :)

    Best regards,
    Mike

    in reply to: Forms #1034919

    Hi,
    Thanks, I have taken a look at this and some of the forms are a little different, but I tried to recreate this for all of the forms, but please remove all of the css for the forms and use this instead:

    @media only screen and (min-width: 641px) {
    .gform_wrapper .gform_body {
        width: 100% !important; 
        max-width: 500px !important; 
        margin-left: 0px !important; 
        margin-bottom: 3% !important; 
    }
    #top .gform_wrapper .gform_body li>.gfield_label {
      margin-left: 0px !important;
        width: 45% !important;
        max-width: 150px !important; 
    }
    }
    #top .gform_wrapper .gform_body li>.ginput_container {
        width: 50% !important; 
        max-width: 300px !important; 
        float: left !important; 
    margin-left: 0px !important;
    }
    #top .gform_wrapper .gform_body li>.ginput_container {
        margin-bottom: 3% !important; 
    }
    }

    They should all be very close now, but if there are still any issues, please include a admin login in the private content area so we can take a closer look.

    Best regards,
    Mike

    in reply to: Update to new Enfold version breaking site #1034912

    Hi,
    OK, Please clear your browser cache and check the sites.

    Best regards,
    Mike

    in reply to: Problem with horizontal gallery #1034910

    Hey gabs01,
    Sorry for the late reply, if I understand your question correctly, you would like to have your homepage images in a circle like the ones you linked to in the Private Content area.
    But I don’t see the link to your site, please include.

    Best regards,
    Mike

    in reply to: Forms #1034906

    Hi,
    opps, please add a ” } ” at the end :)

    Best regards,
    Mike

    Hey ksei81,

    I see that all of your errors are for the plugin “revslider” please disable by renaming the plugin folder via FTP to something like “revslider-2”

    Is your WordPress also up-to-date?

    Please explain how you updated, via FTP?

    If you update via FTP you must remove the old copy of Enfold competently before uploading the new version with FTP – otherwise the old elements will remain in /shortcode folder and be duplicate, which breaks the theme.
    Please try, via ftp, delete the “enfold” theme directory and then upload the new “enfold”

    Another possible issue: please ensure your PHP is at least v5.6, if you are unsure please ask your webhost to check that this is done correctly, often this is not done correctly.

    Best regards,
    Mike

    Hi,
    Glad we were able to help, we will close this now. Thank you for using Enfold.

    For your information, you can take a look at Enfold documentation here
    For any other questions or issues, feel free to start new threads under Enfold sub forum and we will gladly try to help you :)

    Best regards,
    Mike

    in reply to: Update to new Enfold version breaking site #1034898

    Hi,
    That’s good to hear, please include the ftp access for the next two sites.

    Best regards,
    Mike

    in reply to: How can i add image or text header right side ? #1034896

    Hi,
    Is your Safari showing this between 1160px & 1282px and is it a iPad? I didn’t add “pixel-ratio” into the media query which the Safari takes into account.
    I don’t have a IOS so I can’t effectively adjust this, but we can have a team member look at this for you.

    Shall we make the adjustments for 768px though 1160px, so when it’s looked at later with Safari they can check all of the sizes?

    Best regards,
    Mike

    in reply to: Blog Header #1034894

    Hi,
    Thank you for the feedback, the dev team are making many changes which we hope to remove your struggles.
    Are you satisfied with the solution, or would you like me to login to your site and investigate further?

    Best regards,
    Mike

    Hi,
    I have tried a few solutions on my localhost & found this a little trickier than expected, but I found this one to show the post randomly:

    add_filter('avia_post_slide_query','avia_order_by_random', 10, 2);
    function avia_order_by_random($query, $params) {
    $query['orderby'] = 'title';
    $query['orderby'] = 'rand';
    return $query;
    }
    

    and this one to show the blog posts randomly within a category.

    add_filter('avia_post_slide_query','avia_order_by_random', 10, 2);
    function avia_order_by_random($query, $params)
    {
    $query['orderby'] = 'title';
    $query['order'] = 'rand';
    
    $terms = explode(',', $params['categories']);
    if (!empty($terms) && in_array(1, $terms)) 
    {
        $query['orderby'] = 'date';
    }
    return $query;
    }
    

    the “1” is the category, please adjust to suit.

    Best regards,
    Mike

    in reply to: Blog Header #1034879

    Hi,
    Are you using header transparency on that page?
    Another option is this jQuery, Try adding this code to the end of your functions.php file in Appearance > Editor:

    
    function custom_blog_title_script(){
      ?>
      <script>
    jQuery(window).load(function(){
      jQuery( '<h1 class="main-title entry-title"><a title="Blog" itemprop="headline">Blog</a></h1>' ).insertBefore( '#top.blog article.post-entry:first-child' );
      });
     </script>
      <?php
      }
      add_action('wp_footer', 'custom_blog_title_script');

    Best regards,
    Mike

Viewing 30 posts - 24,421 through 24,450 (of 35,179 total)