Forum Replies Created

Viewing 30 posts - 17,461 through 17,490 (of 35,074 total)
  • Author
    Posts
  • in reply to: Can't update theme to 4.7 #1203082

    Hi,
    Thanks for the login, this error was caused by an error with the imported icons in the “Iconfont Manager”, I removed the set causing the error. Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Accordion blue line not resolved on Safari #1203079

    Hi,
    Please include an admin login in the Private Content area, using the css I posted above to remove the blue focus is working for me, it sounds like you are having a caching issue.
    While you are building your site I recommend disabling all caching plugins and the Enfold Theme Options > Performance > JS & CSS file merging and compression option, once your site is done you can activate your caching.

    Best regards,
    Mike

    in reply to: Questions #1203075

    Hi,
    Glad to help.

    Best regards,
    Mike

    in reply to: Downloading page Consulting #1203029

    Hi,
    That is accomplished with css, for the layout you described above you probably find that if the middle image and text were flipped the whole page would be fine. So if you add a custom ID to this section and use the following css the image and text should be flipped. If not, then please link to the section so we can modify.

    @media only screen and (max-width: 767px)  {
    #custom-id .entry-content-wrapper {
        display: flex !important;
        flex-direction: column-reverse;
      }
    }

    Best regards,
    Mike

    in reply to: Anchor Links #1203028

    Hi,
    Glad to hear this helped. Shall we close this then?

    Best regards,
    Mike

    in reply to: Far right navigation drop down not working #1203027

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

    #menu-item-10921 > div.avia_mega_div.avia_mega1.three.units {
    	    left: 10px !important; 
    }

    Best regards,
    Mike

    in reply to: add page url to contact element #1203025

    Hey Dom,
    Sorry for the late reply, unfortunately, we don’t have an option to add this information.

    Best regards,
    Mike

    in reply to: Social Media Icons Disappeared #1203024

    Hey marmat84,
    Thanks for the login, I took a look at your posts and you only have one published post that was created with the Advanced Layout Builder, for these, you have to manually add the social share buttons with the “social share buttons” element.

    Best regards,
    Mike

    in reply to: Accordion blue line not resolved on Safari #1203023

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

    .toggler,.toggler.activeTitle:focus {
      outline: -webkit-focus-ring-color none 0px;
      outline-color: -webkit-focus-ring-color;
      outline-style: none !important; 
      outline-width: 0px !important; 
    }

    Best regards,
    Mike

    in reply to: Enfold Icons Not Appearing Across Site #1203022

    Hey timjohnson555,
    Please include a link to your site so we can investigate, an admin login in the Private Content area could also help.

    Best regards,
    Mike

    in reply to: Target css inside iframe #1203020

    Hey maxgorelkine,
    Sorry due to CORs you can’t target the css inside of an iframe, the browser will not override the source css.

    Best regards,
    Mike

    in reply to: Sticky color section #1203017

    Hey jougr,
    Typically you can make any element sticky with this plugin or you can try following the steps in this post

    Best regards,
    Mike

    in reply to: Assign a unique Section ID to the color section element #1203016

    Hey trufflesadmin,
    So your custom ID is not saving? Please include an admin login in the Private Content area and a link to the page so we can investigate the color section.

    Best regards,
    Mike

    in reply to: Questions #1203015

    Hey CharlieTh,
    Thank you, To add screenshots please try using https://savvyify.com/img/ and pasting the image URL in your post.

    Best regards,
    Mike

    in reply to: Unable to upload recent version of enfold theme #1203014

    Hey Kingsleyuhons,
    Please check that your PHP Max Upload Size is at least 24M and your PHP ZipArchive Extension is enabled, you can quickly check this by going to WordPress > Dashboard > LayerSlider > Options and click “System Status” and look under “Server Settings”
    2020-04-11_201949.png

    Best regards,
    Mike

    in reply to: Customize product page #1203013

    Hey fcp,
    To increase the space between product price and product counter, Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    .single-product-summary form.cart {
    	 padding-top: 20px !important; 
    }

    To make the product counter and the Add To Cart button a little bit smaller, try this css:

    #top div.single-product-summary .quantity input.plus, #top div.single-product-summary .quantity input.minus,#top div.single-product-summary .quantity input.qty {
        line-height: 21px !important; 
        width: 23px !important; 
        height: 23px !important; 
    }
    #top div.single-product-summary button[name=add-to-cart] {
        padding: 5px !important; 
    }
    div.single-product-summary form.cart div.quantity {
        min-width: 50px !important; 
    }

    Feel free to adjust to suit.
    2020-04-11_200759.png

    Best regards,
    Mike

    in reply to: Ads and website #1203011

    Hi,
    Sorry we don’t develop websites, we develop the theme that is used to create websites.
    If you want to develop your own website we invite you to use Enfold, otherwise, you can fill out the form here to began working with developers that will assist you in creating your website.

    Best regards,
    Mike

    in reply to: Problem with button #1203010

    Hi,
    Since you are using the Classic Editor for your page I assume that you are also using the “shortcode wand” to create the buttons, I created a button for you and the button label was correct “Nuovo pulsante”
    2020-04-11_192819.png
    You can also edit the label after the button is added directly in the HTML:
    2020-04-11_193454.png
    this is what I did to create the second button on your page.

    Best regards,
    Mike

    in reply to: Lightbox Title text when image is in a Text Block #1203009

    Hi,
    Thank you for the link, as I understand you are adding your images to text block elements so if you use the “Text” tab in the element builder you can see the image code, like this:
    2020-04-11_183757.png
    Please try adding your title, such as title="my title" to the image code as shown in the screenshot, this will add the title to the lightbox image:
    2020-04-11_184410.png
    You can also use this function to add the title to future images added, it doesn’t correct images already posted, but will add the title for future images.
    Try adding this code to the end of your functions.php file in Appearance > Editor:

     // ~~~~~~~~~~~~~~~~~~~~~ Add Image Title - Crunchify.com Tips ~~~~~~~~~~~~~~~~~~~~~~~~
    function crunchify_add_image_title( $html, $id ) {
    	$crunchify_attach = get_post($id);
    	if (strpos($html, "title=")) {
        		return $html;
        	}
        	else {
    		$crunchifyTitle = esc_attr($crunchify_attach->post_title);
    		return str_replace('<img', '<img title="' . $crunchifyTitle . '" '  , $html);      
    	}
    }
    add_filter( 'media_send_to_editor', 'crunchify_add_image_title', 15, 2 );
     
    function crunchify_add_image_title_gallery( $content, $id ) {
    	$crunchify_title = get_the_title($id);
    	return str_replace('<a', '<a title="' . esc_attr($crunchify_title) . '" ', $content);
    }	
    add_filter('wp_get_attachment_link', 'crunchify_add_image_title_gallery', 10, 4);
    

    Code found here.

    Best regards,
    Mike

    in reply to: Anchor Links #1203005

    Hi,
    Thank you for the link, as I understand your issue you want the teal text to be a link and point to the graphic that says “THE TRUTH” which be in each post, so the anchor link will point to the same page.
    First, you will need to add an ID to the image “THE TRUTH”, such as the-truth
    2020-04-11_174325.png
    You will need to add the ID to the image on every page.
    now your anchor will be #the-truth so all of your links should point to the anchor.
    2020-04-11_175123.png

    Best regards,
    Mike

    in reply to: Can't update theme to 4.7 #1203000

    Hey alkmgmt,
    Sorry, these versions will require a manual update via FTP, The easiest and safest way to do this is to download the newest version from Theme Forest and rename your current theme folder to “enfold-old” via ftp then upload the new “enfold” folder and check that your site is working correctly.
    Should for some reason you wish to roll-back to the old version, it’s easy to do, simply rename the new “enfold” folder to “enfold-new” via ftp and then rename “enfold-old” to “enfold” then refresh your page.
    Once you are happy you can delete the “enfold-old” folder via ftp, (not the WP theme page)
    Please don’t try to overwrite the theme folder, as this will leave old files behind and cause errors.

    Best regards,
    Mike

    in reply to: I can't update Enfold 4.5.2 to 4.7.4 #1202996

    Hey VS2020,
    Sorry, with this version you will need to update manually via FTP, The easiest and safest way to do this is to download the newest version from Theme Forest and rename your current theme folder to “enfold-old” via ftp then upload the new “enfold” folder and check that your site is working correctly.
    Should for some reason you wish to roll-back to the old version, it’s easy to do, simply rename the new “enfold” folder to “enfold-new” via ftp and then rename “enfold-old” to “enfold” then refresh your page.
    Once you are happy you can delete the “enfold-old” folder via ftp, (not the WP theme page)
    Please don’t try to overwrite the theme folder, as this will leave old files behind and cause errors.

    Best regards,
    Mike

    in reply to: Hide the date from the Mansory Gallery #1202994

    Hi,
    Glad to hear that you have sorted it out. 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: Grid row image backgrand ovarlay #1202993

    Hey creativeopole,
    Thanks for the link, it looks like your cell “OFERTA” already has a background color and opacity, what are you having trouble with?

    #top .cs-flex-bg #cs-bg-oferta {
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5)!important;
    }

    Best regards,
    Mike

    in reply to: open lightbox from an anchor link #1202990

    Hi,
    Sorry, the first one is not possible, for the second one, you can’t have one button do two actions at the same time.

    Best regards,
    Mike

    in reply to: Icon next to title on portfolio Grid #1202989

    Hi,
    Sorry for the late reply, the following css will place an icon above the titles, to place a different icon above each title add the masonry ID to the code with the icon and copy for each icon. Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    #top .av-caption-style-overlay .av-masonry-item-with-image .av-inner-masonry-content .avia-arrow {
    	  display: block;
    	  top: 40%;
    	  left: 47% !important; 
    	  transform: rotate(0deg) !important; 
    }
    .av-masonry-entry .avia-arrow:before {
    	content: "\e821";
    	font-family: entypo-fontello;
    	color: #fff;
    	font-size: 40px;
    }
    
    @media only screen and (max-width: 767px) { 
    	#top .av-caption-style-overlay .av-masonry-item-with-image .av-inner-masonry-content .avia-arrow {
    	  display: block;
    	  top: 20%;
    	  left: 47% !important; 
    	  transform: rotate(0deg) !important; 
    }
    .av-masonry-entry .avia-arrow:before {
    	content: "\e821";
    	font-family: entypo-fontello;
    	color: #fff;
    	font-size: 20px;
    }
    }

    Best regards,
    Mike

    in reply to: Open image in lightbox with custom button #1202945

    Hi,
    Inside the popup you can add any content or shortcodes, for example code this would be another button:

    [av_button label='Large Button' icon_select='yes' icon='ue82b' font='entypo-fontello' size='small' position='center' label_display='' title_attr='' color='theme-color' custom_bg='#444444' custom_font='#ffffff' link='manually,http://' link_target='' id='' custom_class='' av_uid='' admin_preview_bg='']

    Best regards,
    Mike

    in reply to: Change Woocommerce term for "Cart" #1202916

    Hi,
    Thank you for the feedback, I see your child theme is active and your functions.php looks correct and ready to update the parent theme.

    Best regards,
    Mike

    in reply to: Error after update #1202672

    Hi,
    Thank you, I was able to login to your FTP. I’m investigating.

    Best regards,
    Mike

    Hi,
    I prefer the Duplicator plugin by Snap Creek. The last step it does is to correct the domain URLs with an auto search and replace.
    Otherwise, you can use the Better Search Replace plugin to correct the domain.

    Best regards,
    Mike

Viewing 30 posts - 17,461 through 17,490 (of 35,074 total)