Forum Replies Created

Viewing 30 posts - 18,121 through 18,150 (of 35,070 total)
  • Author
    Posts
  • Hi,
    Are we seeing the CTA twice because we are adding it twice, once with the original “woocommerce_after_single_product_summary” and again with the new “ava_before_footer”?
    I’m thinking we don’t need the original shortcode anymore because the new one works on all pages and not just the product pages?

    Best regards,
    Mike

    Hey bcerin,
    Thank you for the link, but I’m not seeing “Save my name, email, and website in this browser for the next time I comment” in your comment section. I also don’t see the “website” field, were you already able to make these changes?

    Best regards,
    Mike

    in reply to: CSS Media Query not Working on Mobile Phone #1186030

    Hi,
    Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field instead:

    @media only screen and (max-width: 767px) {
    .intro-box-main > .av-parallax {
    background: #fff;
    background-image: unset !important;}}

    Best regards,
    Mike

    in reply to: I FIND THIS IN THE FORUMS #1186009

    Hi,
    Sorry for the late reply, this seems to be related to another post of yours that was answered here. Please check.

    Best regards,
    Mike

    in reply to: Customize some full width buttons #1186004

    Hi,
    Try adding this css:

    #top .main_color .BGbiancoTXTblu .avia-button > span.avia_iconbox_title:hover {
        color: #fff !important; 
        z-index: 0 !important; 
    }
    #top .main_color .BGbiancoTXTblu > .avia-button > .avia-button:hover {
    	color: #fff !important; 
    	background-color: #24305e !important;
    }

    Best regards,
    Mike

    in reply to: Page excerpts as widget #1185990

    Hi,
    Glad you found a solution that works better for you, and thanks for sharing.
    Shall we close this then?

    Best regards,
    Mike

    in reply to: Google Maps notice – change text german #1185988

    Hi,
    Thank you, I found the text in the de_DE language file:

    Aufgrund deiner Datenschutz-Einstellungen können wir Ihnen die Karte nicht anzeigen. Klicken Sie hier, um die Karte in einem neuen Fenster zu öffnen.

    and changed to your request:

    Aufgrund Ihrer Datenschutz-Einstellungen können wir Ihnen die Karte nicht anzeigen. Klicken Sie hier, um die Karte in einem neuen Fenster zu öffnen.

    Please download the modified files here and save a copy of your current files for fallback and upload these to /enfold/lang/ then clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Previous/Next navigation on single post #1185977

    Hi,
    Very good then, please feel free to open a new topic if you have further questions about this.

    Best regards,
    Mike

    in reply to: Google Maps notice – change text german #1185665

    Hey DirkB,
    Please check your settings at Enfold Theme Options > Cookie Consent > Cookie Handling > Show advanced options > Refuse Cookie Warning
    2020-02-18-071244
    to see if this is matchs your message, I checked my install in German but the message is not the same, perhaps you are using a different version.
    We can make the text change in the German language file for you once we find it, please link to your site where we can see the message and let us know if you are using “de_DE” or “de_DE_formal” for the language, and which translation above to wish to use.

    Best regards,
    Mike

    in reply to: Previous/Next navigation on single post #1185655

    Hi,
    Thank you for the screenshot and link, I see your custom red buttons for the next / previous, if you add a custom class or ID to these then you can add the next and previous links to them with this function:

    
    function custom_script(){
      ?>
      <script>
    (function($){
      $(document).ready(function(){
        var getprev = $("a.avia-post-nav.avia-post-prev").attr("href");
        var getnext = $("a.avia-post-nav.avia-post-next").attr("href");
        $(".woocommerce-product-details__short-description .avia-buttonrow-wrap a.avia-button:nth-child(2)").attr("href", getprev);
        $(".woocommerce-product-details__short-description .avia-buttonrow-wrap a.avia-button:nth-child(3)").attr("href", getnext);
    });
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'custom_script');

    This code example was successfully used for products in a shop that had custom buttons similar to yours, but it needs to be modified to work for you.
    After you add a custom class or ID we can assist further.

    Best regards,
    Mike

    in reply to: custom types and fields #1185639

    Hey pabloeduardo,
    Sorry for the late reply, I do not use the plugin “Toolset” but my research finds that “there isn’t a good workaround right now.”
    Right now Toolset asks that we make some changes that would break our logic and we can not do.
    I have seen some customers using Toolset on their projects, but I’m unsure what parts they are using or not.
    I have also seen customers use Pods – Custom Content Types and Fields so perhaps looking into this as an alternative would help?

    Best regards,
    Mike

    in reply to: Which Color scheme …?? #1185620

    Hi,
    I was not asking you why, I was reporting what I found, so remove this:

    include 'shortcodes.php';

    and

    
    /* Proper way to enqueue styles and scripts
    */
    function theme_name_scripts() {
    wp_enqueue_style( 'style-name', get_stylesheet_uri() );
    }
    add_action( 'wp_enqueue_scripts', 'theme_name_scripts' );

    Sorry, I don’t know what you mean by “My site was completely foobar”

    Best regards,
    Mike

    in reply to: Customize some full width buttons #1185615

    Hi,
    In the css above you added #BLU to the beginning of the rules, this indicates a page wide ID not a class.
    You need to add the class before avia-button but not connected to it like this

    #top .main_color .blu .avia-button:hover

    I also see in your css you have the wrong arrows:
    2020-02-18-052555

    Best regards,
    Mike

    Hi,
    Product pages should be working, so you only should need to add the shop and categories pages to the exclusion.

    Best regards,
    Mike

    in reply to: Code block #1185227

    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 in the Enfold forum and we will gladly try to help you :)

    Best regards,
    Mike

    in reply to: Replace Icon Box or Icon List icons with images? #1185225

    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 in the Enfold forum and we will gladly try to help you :)

    Best regards,
    Mike

    in reply to: Column Spacing #1185224

    Hi,
    I took a look at your section, but your container is set to a max-width of 1280px, so adding more space between the columns makes the image smaller. You could go to your layout settings and make the max-width larger which should make the space between larger because it is a percentage of the page width.
    How much space do you want?

    Best regards,
    Mike

    in reply to: Hello world – #1185220

    Hi,
    I believe this is because posts and pages are searched when a 404 is generated, since a breadcrumb doesn’t offer any value on a 404 would you like it hidden?

    Best regards,
    Mike

    in reply to: Hide Submenu Element on Mobile #1185186

    Hi,
    We will leave this open while you look into this. A couple of places to look would be if your child theme has a /shortcodes/menu/ folder in it, you could rename to something else via FTP as a test, “/menu-old/”
    and if your custom css has any reference to “sticky_placeholder” or “sub_menu1”, you could comment out to test.
    Also check your child theme functions.php.

    Best regards,
    Mike

    in reply to: category page #1185182

    Hi,
    I believe that it can show limited text shortcodes, like headlines because it is a text field, but you can open a new post and use the shortcode wand to test. CategoryTinymce along with other Tinymce addons are not going to get the shortcode wand, they are not compatible.

    Best regards,
    Mike

    in reply to: Code block #1185171

    Hi,
    Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    @media only screen and (max-width: 767px) { 
    .flex_column.av_one_half.flex_column_div.av-zero-column-padding.avia-builder-el-11 {
    	z-index: 0 !important;
    }
    }

    After applying the css, Please clear your browser cache and check.

    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 in the Enfold forum and we will gladly try to help you :)

    Best regards,
    Mike

    Hi,
    It looks like you were missing a bracket, please try this:

    add_action('ava_before_footer', 'ava_before_footer_mod');
    function ava_before_footer_mod() {
    	if(!is_page(array(662))) {
    		echo do_shortcode("[MY OWN SHORTCODE]");
    }
    }

    if you want to add more pages add a comma and the next number like this:
    if(!is_page(array(206,644))) {

    Best regards,
    Mike

    in reply to: Headline rotator with icons in secondary menu #1185029

    Hi,
    Thank you for the video it helps show what you are seeing, but I don’t see this on Safari. Does your site use any content delivery networks (CDN)? If so I could be seeing a different set of files because I’m in a different part of the world.
    You could ask your webhost to clear any server cache and CDN, which could take 24 hrs, and then clear your cache and history again and check.

    Best regards,
    Mike

    in reply to: new icon instagram on social profile and bottom like others #1185025

    Hi,
    Sorry for the late reply, sorry for the confusion, when I suggested to disable smush lazy load I meant as a test to see if your problem was resolved, which was, restore your logo, if it didn’t help then it is fine to enable. But if your problem was resolved then you probably do not want to enable.
    When I see your site today your logo is visible was it related to the plugin?

    Best regards,
    Mike

    in reply to: Background Color Sektion #1185014

    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 in the Enfold forum and we will gladly try to help you :)

    Best regards,
    Mike

    in reply to: Page excerpts as widget #1185003

    Hey rokhead,
    Sorry for the late reply, I had not used Incarnation, but from reading your description and viewing your link, Enfold doesn’t have a built-in way to display a page in a grid layout. But I was able to achieve this with a plugin Add Category to Pages
    2020-02-16-115416
    this is the backend view were each “blog post” element is displaying a single page pulling the featured image, title, read more link and custom excerpt:
    2020-02-16-120541
    After installing the plugin I created 3 categories for pages, adding one page to each category, ensuring the pages had featured images and custom excerpts. Custom excerpts must be used if you have built the pages with the Advanced Layout Builder, the “excerpt” field is typically at the bottom of the page, and to turn it on click on the “screen options” tab at the top of the screen:
    2020-02-16-121949
    Then in the blog post element choose “Display entries from a custom taxonomy” + Grid Layout + “Title and Excerpt + Read More Link”
    2020-02-16-122438
    under the styleing tab I choose one for “Blog Grid Columns” and no Pagination, but I guess you could also choose 3 “Blog Grid Columns” with 3 entrys from the same page category for a similar result.

    Best regards,
    Mike

    in reply to: Customize some full width buttons #1184991

    Hi,
    Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    #top.page-id-2864 .main_color .avia-builder-el-77 .avia-color-theme-color.avia-button {
        background-color: #ffffff;
        border-color: #ffffff;
        border-style: solid;
        
    }
    #top.page-id-2864 .main_color .avia-builder-el-77 .avia-color-theme-color.avia-button:hover {
        background-color: #24305e;
        border-color: #24305e;
        border-style: solid;
        color: #ffffff;
    }
    #top.page-id-2864 .main_color .avia-builder-el-77 .avia-color-theme-color.avia-button > span.avia_iconbox_title {
    	color: #24305e;
    }
    #top.page-id-2864 .main_color .avia-builder-el-77 .avia-color-theme-color.avia-button:hover > span.avia_iconbox_title {
    	color: #ffffff;
    }

    this css only works with the one button you linked to above and uses the temp class “avia-builder-el-77” but this could change if you move elements around on your page. Please try adding custom classes to your buttons, which will not change:
    2020-02-16-104654
    and you can use the same custom classes for all of the buttons with the same style, such as blue-hover

    Best regards,
    Mike

    in reply to: Add box shadow to post slider column #1184979

    Hi,
    I believe from your description this is due to the first element has no padding or margin on the top or left and the last item has no padding or margin on the top or right.
    So to achieve this:
    2020-02-16-081613
    try some css like this:

    article.slide-entry {
    box-shadow: 1px 1px 30px 3px #cccccc !important;
    border: 1px solid #eeeeee !important;
    }
    
    .slide-entry.av_one_third,.slide-entry.av_one_third.first {
        margin-left: 2% !important; 
        margin-right: 2% !important; 
        margin-top: 2% !important;
        width: 28% !important; 
    }

    please adjust this for your site, if you need further help then please include a link to your page.

    Best regards,
    Mike

    in reply to: Hover on Colum effect #1184970

    Hi,
    Thank you for the link, to apply this to your site please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    .flex_column.av_one_third {
    webkit-transition: -webkit-transform .15s cubic-bezier(.4,0,.2,1);
        transition: -webkit-transform .15s cubic-bezier(.4,0,.2,1);
        transition: transform .15s cubic-bezier(.4,0,.2,1);
        transition: transform .15s cubic-bezier(.4,0,.2,1),
        -webkit-transform .15s cubic-bezier(.4,0,.2,1);
    }
    .flex_column.av_one_third:hover {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }

    While this does work, I recommend that to add a custom class to the 3 columns and add that to your css so that the css won’t be working on all 1/3 columns.
    After applying the css, Please clear your browser cache and check.

    Best regards,
    Mike

Viewing 30 posts - 18,121 through 18,150 (of 35,070 total)