Forum Replies Created

Viewing 30 posts - 46,921 through 46,950 (of 67,591 total)
  • Author
    Posts
  • in reply to: Add Social Share Icons to Title Container #506789

    Hi!

    Try to use this:

    /* Enable Social Share Buttons */
    add_filter('avf_title_args', 'avia_add_social_toolbar_template_builder', 10, 2);
    function avia_add_social_toolbar_template_builder($args, $id)
    {
    	ob_start();
    	avia_social_share_links(array(), false);
    	$social = ob_get_clean();
    	$args['additions'] .= $social;
    	return $args;
    }

    Add this in the Quick CSS field:

    .title_container .av-share-box {
        width: 30%;
    }

    Best regards,
    Ismael

    in reply to: Broken tables #506787

    Hi!

    Try to remove any “greater than” or “less than” symbol in the page. Example: “with <5 m tall”

    Replace it with the html entity code: http://www.w3schools.com/html/html_entities.asp

    Best regards,
    Ismael

    in reply to: Forcing Arrows on the easy slider #506786

    Hi!

    If you want to force the arrows to display, modify config-templatebuilder > avia-shortcodes > slideshow.php. Look for this code around line 532:

    if($this->slide_count > 1)
    			{
    				$html .= $this->slide_navigation_arrows();
    				$html .= $this->slide_navigation_dots();
    			}

    .. replace it with:

    if($this->slide_count > 0)
    			{
    				$html .= $this->slide_navigation_arrows();
    				$html .= $this->slide_navigation_dots();
    			}
    			

    We replace “1” with “0”.

    Cheers!
    Ismael

    in reply to: Removing date/time (other META info) from social shares #506783

    Hi!

    I’m pretty sure you can’t find the page meta info on a template file inside the theme, try to check the page.php or includes > loop-page.php file. You can perhaps modify the database, look for the pages in wp_posts table and remove the meta infos. If you’re not familiar with wp databases, this is going to be impossible and it might break the page structure. Have you tried asking the linkedin community regarding this? I’m not sure how they fetch the url data. I’ll ask the rest of the support team to check it.

    Cheers!
    Ismael

    in reply to: Reduce height of full width masonry #506781

    Hi!

    Yes, please give us the login details and a screenshot of what you’re trying to adjust. Use imgur or dropbox. The solution on the previous link will decrease the thumbnail size but it will not affect the actual height of the masonry items. Try to use this in the Quick CSS field instead:

    .av-fixed-size .av-masonry-entry .av-inner-masonry-sizer {
        padding-bottom: 60%;
    }

    Best regards,
    Ismael

    in reply to: Mobile issue with a few elements #506780

    Hey!

    Alright. Please replace the code with this:

    @media only screen and (max-width: 767px) {
    #top #wrap_all .header_color h3, #top #wrap_all .main_color h3, #top #wrap_all .alternate_color h3, #top #wrap_all .footer_color h3, #top #wrap_all .socket_color h3 {
        line-height: 3em;
    }
    }

    Did you add a negative margin to those columns? Try to add this inside the css media query above:

    .flex_column.av_one_half {
        margin-bottom: 20px !important;
    }

    Regards,
    Ismael

    in reply to: Formatting shop issues #506779

    Hi inchmasterflex!

    Thank you for using Enfold.

    1.) You have this css code in the Quick CSS field:

    .current-menu-item>a>.avia-menu-text {
        color: white !important;
    }

    .. replace that with:

    .current-menu-item>li>a>.avia-menu-text {
        color: white !important;
    }

    2.) You can only display the banner on the shop overview page and the product category pages.

    3.) Use this css code:

    .current_page_parent > a {
        color: red !important;
    }

    4.) Try this one:

    ul[data-success="was added to the cart"] .cart_dropdown_first a {
        background-color: black;
        color: white !important;
    }

    If possible, please create a single thread for each inquiries so that we can focus on your question and it will be easier for other users searching for the same solution.

    Regards,
    Ismael

    in reply to: Colour section not taking CSS into account from section 5 on #506778

    Hey!

    What happens when you place the columns inside a color section element?

    Best regards,
    Ismael

    in reply to: Product Sorting #506303

    Hi!

    What is the final code that you use? Might help others who want to do the same thing.

    Regards,
    Ismael

    in reply to: Problem with the blog showing #506301

    Hey!

    You also have a category called “News” so they have the same slug. We modified the “News” category slug for you: http://www.garaggge.com/news/

    Best regards,
    Ismael

    Hey!

    1.) Please remove browser cache or hard refresh the page after you add the code suggested above. You can also try this:

    @media only screen and (max-width: 480px) {
    .responsive .logo img {
        max-height: 50px !important;
    }
    }

    Adjust the max height value if necessary.

    2.) Add this code inside the media query above.

    #socket .copyright {
        float: none;
    }

    End code should be:

    @media only screen and (max-width: 480px) {
    .responsive .logo img {
        max-height: 50px !important;
    }
    
    #socket .copyright {
        float: none;
    }
    }

    Cheers!
    Ismael

    in reply to: Product Sorting #506296

    Hey!

    How did you sort it? Mind sharing the fix? :)

    Cheers!
    Ismael

    in reply to: Avia Editor Problems still Present #506293

    Hey!


    @SmoovP
    : Glad the advance layout builder is now working on your installation. It’s probably a cache issue.


    @mbroooshkey
    : Aside from the ftp login credentials, we also need to access the dashboard to test the advance layout builder. Please post those details here as well. I tested some of the login credentials you provided on the previous post but they are not working.

    Also, try to check the Settings > General panel. Make sure that the url in the WordPress Address (URL) and the Site Address (URL) fields are completely the same.

    Best regards,
    Ismael

    in reply to: Image Cropping Issues #506289

    Hey!

    For portfolio items, try this:

    .postid-593 .av-masonry-image-container {
    background-size: 100% 100%;
    }

    Best regards,
    Ismael

    in reply to: Show category image and description on all paginated pages #506287

    Hey!

    You can enable the theme’s shop banner. Go to Enfold > Shop Options panel then enable the “Enable Banner for product category pages”. Edit the product category, look for the Enfold Category Styling settings then set it to the second option.

    Cheers!
    Ismael

    in reply to: Mobile issue with a few elements #506282

    Hi!

    It is because of this css modification:

    #top #wrap_all .header_color h3, #top #wrap_all .main_color h3, #top #wrap_all .alternate_color h3, #top #wrap_all .footer_color h3, #top #wrap_all .socket_color h3 {
        color: #4ea3bd;
        font-size: 35px;
        font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
        font-weight: lighter;
        text-transform: uppercase;
    }

    Try to add the line-height property:

    #top #wrap_all .header_color h3, #top #wrap_all .main_color h3, #top #wrap_all .alternate_color h3, #top #wrap_all .footer_color h3, #top #wrap_all .socket_color h3 {
        color: #4ea3bd;
        font-size: 35px;
        font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
        font-weight: lighter;
        text-transform: uppercase;
        line-height: 3em;
    }

    Regards,
    Ismael

    in reply to: How to make the blog post style like other pages? #506279

    Hi maschera!

    Thank you for using Enfold.

    I’m sorry but it’s not possible to add full width elements in the post unless you use the advance layout builder. If you don’t want to recreate the layout of a certain post or page, you can save it as a template (top right of the advance layout builder). You can then apply this template in other post then change the content accordingly.

    Cheers!
    Ismael

    in reply to: How to leave a reply to comments on a blog post #506277

    Hey!

    The css codes are actually working. Please remove browser cache or hard refresh the page.

    Best regards,
    Ismael

    in reply to: black border #506272

    Hi!

    I’m sure you’re familiar with the custom css class field now. Please add a custom css class attribute to that image then apply the css properties above. :)

    Best regards,
    Ismael

    in reply to: Contactform translate problem #506271

    Hi!

    Can you please provide a link to the actual page with the contact form? We would like to check it.

    Best regards,
    Ismael

    in reply to: show number of posts wrapped by #506269

    Hi!

    We added the code for you. You can find it right after the copyright field: http://erodog.com/

    Regards,
    Ismael

    in reply to: Sorting #506265

    Hey!

    If you want to add a sort feature on the masonry element, edit the posts or portfolio items then add categories. These categories will be automatically added as sort items.

    Best regards,
    Ismael

    in reply to: Can't embed video #506263

    Hey!

    Note that bumping or answering your own thread will push it at the end of the queue and we won’t be able to answer it immediately. We updated the page for you. The video should automatically play now. Please remove browser then reload the page: https://sheffield-hypnosis.co.uk/

    Best regards,
    Ismael

    in reply to: iPad drop down menu won't "tap-off" #506243

    Hey!

    Edit the Fullwidth Sub Menu element then set the Mobile Menu Display to display a button instead of the default menu layout. I suggested this again because it will create a mobile button, when tap, list all the menu items without a sub menu.

    Cheers!
    Ismael

    in reply to: newsletter widget area #506240

    Hey!

    Please edit the text block, add a custom css class attribute then apply these css properties:

    position: relative;
    margin-top: -85px;
    margin-left: 80px;
    

    For the image, try to replace the code with this:

    .newsletter-image {
        bottom: 0px !important;
        left: -60%;
    }

    Regards,
    Ismael

    in reply to: Menu over logo #506236

    Hey!

    Please add this in the functions.php file to remove the default flags:

    add_action('after_setup_theme','avia_remove_main_menu_flags');
    function avia_remove_main_menu_flags(){
            remove_filter( 'wp_nav_menu_items', 'avia_append_lang_flags', 20, 2 );
            remove_filter( 'avf_fallback_menu_items', 'avia_append_lang_flags', 20, 2 );
            remove_action( 'avia_meta_header', 'avia_wpml_language_switch', 10);
    }

    After that, add this code to place the selector in the top bar:

    add_action('avia_meta_header', 'add_custom_content_to_header');
    function add_custom_content_to_header() {
    	do_action('icl_language_selector');
    }

    If you have any additional questions at this time we kindly ask that you open them up in a separate thread. The longer threads get in the forum, they become more difficult to support as they tend to drift off topic and they also make it troublesome for users trying to search for solutions. Keeping threads relevant to their original inquiry ensures that we can keep better track of what has been resolved and that users can more effectively find answers to similar issues they might be experiencing.

    Regards,
    Ismael

    in reply to: Child Theme Styles Need Dynamic Version Number #506231

    Hey!

    It’s possible to remove a registered stylesheet then register a new one. Add something like this in the functions.php file:

    add_action( 'wp_enqueue_scripts', 'wp_enqueue_scripts_mod', 20 );
    
    function wp_enqueue_scripts_mod() {
        
        wp_dequeue_style( 'avia-child' );
        wp_deregister_style( 'avia-child' );
    
        wp_register_style( 'new-child-style', get_stylesheet_directory_uri() . '/new.css', false, '1.0.0' ); 
        wp_enqueue_style( 'new-child-style' );
    
    }
    

    Cheers!
    Ismael

    in reply to: Single price | Total price display in the cart #506229

    Hey!

    I’m sorry but I don’t think that’s possible without major customization in the plugin. You can only see the total of the product price if you visit the actual cart page, after you add the product item in the cart. Please contact the woocommerce support, maybe they can modify the quantity button to update the price automatically.

    Cheers!
    Ismael

    in reply to: Contact form button to match Enfolds buttons #506228

    Hey midischool!

    Thank you for using Enfold.

    You could use this in the Quick CSS field in order to adjust the style of the button:

    .avia_ajax_form .button {
        margin: 0;
        padding: 16px 20px;
        border-radius: 2px;
        border-bottom-width: 1px;
        border-bottom-style: solid;
        font-weight: normal;
        font-size: 12px;
        min-width: 142px;
        outline: none;
    }

    Adjust the values as you please.

    Best regards,
    Ismael

    in reply to: Mobile logo size – Make it bigger! #506225

    Hi!

    The code above will only affect the the mobile view or screens with resolution lower than 767px.

    Best regards,
    Ismael

Viewing 30 posts - 46,921 through 46,950 (of 67,591 total)