Forum Replies Created

Viewing 30 posts - 61 through 90 (of 23,923 total)
  • Author
    Posts
  • in reply to: fix the border on product plue and minus in the RTL site #693470

    Hey!

    Try adding this code to General Styling > Quick CSS:

    #top div .quantity input[type='button'] {
        border-left: 1px solid;
        border-right: 1px solid;
    }

    Cheers! 
    Josue

    in reply to: Contact form not working #693469

    Hi,

    Can you please create us a WordPress administrator account? post it here as a private reply.

    Regards,
    Josue

    in reply to: Concern about updating Enfold theme #693468

    Hey Kurt,

    You shouldn’t encounter any issues as the functions are now stored in a plugin which will remain untouched, but to be sure you can always backup your current theme via FTP (download the /enfold/ folder to your computer).

    Best regards,
    Josue

    in reply to: Restore my website after new demo data imported #693467

    Hey Alain,

    Not sure if we can help you with this to be honest, how did the original website look like?

    Best regards,
    Josue

    in reply to: Mega menu #693464

    Hey,

    Instead of creating a new column for each group try placing them under one column like this – http://screencast.com/t/2zqaMOSi

    Best regards,
    Josue

    in reply to: White Space between Sections and LayerSlider #693455

    Hi,

    Spacing looks off on resize because the script runs on load, not sure if this is really a problem because once the window is resized if you reload the issue will be gone, what i mean is that most users will load the site in their window size and it will look fine for them.

    Best regards,
    Josue

    in reply to: General Styling Color Picker #693453

    Hi Alan,

    It’s a little bit complicated to explain but basically, the color picker script fails to calculate the color values to the exact decimal because it automatically rounds the color values (HSBToRGB / HSBToHex) to the nearest integer unlike on advanced editor like photoshop which calculates the values to the last decimal.

    Yes, it’s a fault or a bug from the third-party script we use for color picking in the backend, but the difference is hardly noticeable in the actual color, if you really need the #hex code to be exact you can add this to your theme / child theme functions.php:

    add_filter('avia_dynamic_css_output', function($output, $color_set) {
    
    	return str_replace('#005fb8', '#005eb8', $output);
    
    });
    

    That will look for all the iterances of 005fb8 and replace them with 005eb8 (apply the code then resave theme options to generate a new dynamic file).

    Best regards,
    Josue

    in reply to: wrong woocomemrce reset password page #693450

    Hi,

    Can you please check if the issue persists with the default WordPress theme activated?

    Regards,
    Josue

    in reply to: Masonry images height on mobile/tablets #693449

    Hey!

    Try adding this code to General Styling > Quick CSS:

    @media only screen and (max-width: 767px) {
        .av-fixed-size .av-masonry-entry .av-inner-masonry-sizer{
            padding-bottom: 120%;
        }
    }

    Cheers! 
    Josue

    in reply to: url from http to https #693447

    Hey Simplify,

    You can add this line to wp-config.php:

    define('WP_CONTENT_URL', '/wp-content');
    

    So media references won’t include the full http/https path.

    Best regards,
    Josue

    in reply to: Ajax Portfolio – can I create a gap #693446

    Hi,

    It may affect other elements, to isolate this change you can do it by setting a custom ID to the containing Color Section and changing the code accordingly:

    #custom_section .no_margin.av_one_third {
        border-radius: 0px;
        border: 10px solid white !important;
    }
    #custom_section .grid-content { background: #fff !important; }
    #custom_section .grid-entry-title { background: #fff !important; }
    #custom_section .avia-arrow { background: #fff !important; }
    #custom_section #js_sort_items { background: #fff !important; }
    

    Best regards,
    Josue

    in reply to: Blog – difference between Default and Advanced Layout Editor #693445

    Hey,

    Try setting a manual Excerpt for each Post, if you don’t see the Excerpt field enable it in Screen Options (top right).

    Best regards,
    Josue

    in reply to: Enfold grid row #693443

    Hi,

    I can see you managed to get the desired results with Image elements.

    Best regards,
    Josue

    in reply to: Missing Theme Options / Child Themes #693442

    Hi,

    You can import it and enable debug mode to see the shortcode tree below the Advanced Layout Builder. To enable debug mode add this to functions.php:

    add_action('avia_builder_mode', "builder_set_debug");
    function builder_set_debug() {
    	return "debug";
    }
    

    Best regards,
    Josue

    in reply to: Google Mapa #692927

    Creo que ya esta:

    in reply to: Links URL appear when it shouldn't. #692925

    Hi,

    It was the css/print.css that was being included in your child theme functions.php:

    <?php
    add_action( 'wp_enqueue_scripts', 'my_theme_enqueue_styles' );
    function my_theme_enqueue_styles() {
        wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/style.css' );
        wp_enqueue_style( 'enfold-base', get_template_directory_uri() . '/css/base.css' );
        wp_enqueue_style( 'enfold-custom', get_template_directory_uri() . '/css/custom.css' );
        wp_enqueue_style( 'enfold-dynamic-css', get_template_directory_uri() . '/css/dynamic-css.css' );
        wp_enqueue_style( 'enfold-grid', get_template_directory_uri() . '/css/grid.css' );
        wp_enqueue_style( 'enfold-layout', get_template_directory_uri() . '/css/layout.css' );
    //    wp_enqueue_style( 'enfold-print', get_template_directory_uri() . '/css/print.css' );
        wp_enqueue_style( 'enfold-rtl', get_template_directory_uri() . '/css/rtl.css' );
    }
    
    //set builder mode to debug
    add_action('avia_builder_mode', "builder_set_debug");
    function builder_set_debug()
    {
    	return "debug";
    }
    
    ?>

    It’s commented now.

    Best regards,
    Josue

    in reply to: contact form 7: placeholder disappear after click #692392

    Hey vnfan,

    Support for third-party plugins is not something we can assist unfortunately.

    Best regards,
    Josue

    in reply to: AVIA Shortcode in AMP posts #692391

    Hey pako69,

    How does the backend looklike? try using a text block instead of a code block.

    Best regards,
    Josue

    in reply to: Google Mapa #692373

    O create una cuenta de Google nueva especificamente para este sitio y me pasas los accesos.

    in reply to: How can do it with Enfold? #692372

    Hi,

    Possible yes, but not something we can assist i’m afraid as it would require some custom work. You can request a customisation quote from a third-party provider here.

    Best regards,
    Josue

    in reply to: "Submit" button analytics #692368

    Hi,

    The code should only run if form validation has passed.

    <script>
    (function($){
       $('.avia_ajax_form .button').on('click', function(){
    
       	setTimeout(function(){
    		if(!$('.form_element.error').length > 0) {
                         fbq(‘track’, ‘AddToCart’);
    		}
       	},100);
          	
       });
    })(jQuery);
    </script>

    Best regards,
    Josue

    in reply to: Problem with Twitter cards #692017

    Hey Janus,

    I’m afraid we can’t help you with this one as it’s not a theme issue.

    Best regards,
    Josue

    in reply to: Slider with zoom Pictures #692016

    Hey,

    Maybe with LayerSlider, that’s called Ken burns, refer to this topic:

    Best regards,
    Josue

    in reply to: Links URL appear when it shouldn't. #692015

    Hi,

    Can you please create us a WordPress administrator account? post it here as a private reply.

    Regards,
    Josue

    in reply to: How can do it with Enfold? #692014

    Hi,

    We’re getting this message:

    FrancescoCorsini's images are not publicly available.
    

    Best regards,
    Josue

    in reply to: Order of sections on single post page #692013

    You are welcome Anja, glad to help :)

    Regards,
    Josue

    in reply to: Add a quantity field to woocommerce products #692012

    Hey,

    Try changing this:

    add_action( 'woocommerce_after_shop_loop_item', 'custom_quantity_field_archive', 0, 9 );
    

    To:

    add_action( 'woocommerce_after_shop_loop_item', 'custom_quantity_field_archive', 0, 999 );
    

    So the buttons sit outside the a tag because when you try to interact with them it gets you to the product single view.

    Best regards,
    Josue

    in reply to: Contact form Query. #691972

    Hey Zain,

    Possible but not something we can assist with as it would require heavy modification to the theme, i’d suggest checking a specialized form solution like:

    Best regards,
    Josue

    in reply to: How do I install theme like enfold demo #691904

    Hi,

    The access you posted is not working.

    Try running this plugin before attempting to import a demo.

    Best regards,
    Josue

    in reply to: Lightbox with multiple images #691903

    Hey,

    1. Can you post a link to the Page where you’re trying this?
    2. Yes, that option must be checked if you want to use the theme-included lightbox script.

    Best regards,
    Josue

Viewing 30 posts - 61 through 90 (of 23,923 total)