Forum Replies Created

Viewing 30 posts - 6,931 through 6,960 (of 10,428 total)
  • Author
    Posts
  • in reply to: which plug in for download after email? #643204

    Hi DickZirkzee!

    There are many plugins available for this purpose please google “subscribe to download wordpress free plugin” and check out the ones that suit you.

    You can also email the download link or use woocommerce and set it up as a free product.

    Hope this helps.

    Regards,
    Vinay

    in reply to: Plugin WP Google Maps requires jQuery #643202

    Hi milaline!

    Wordpress comes loaded with latest version of jQuery. To disable the default jQuery that comes with wordpress and add your version please add the below code in functions.php which can be accessed via Appearance > Editor

    function modify_jquery() {
    if (!is_admin()) {
    	wp_deregister_script('jquery');
    	wp_register_script('jquery', 'https://code.jquery.com/jquery-1.11.3.min.js');
    	wp_enqueue_script('jquery');
    }
    }
    add_action('init', 'modify_jquery');

    The above method is not advised as it may cause errors with elements on your site that require the latest version of jQuery.

    I guess it is best to contact the plugin author as they know their plugins best.

    Cheers!
    Vinay

    in reply to: Layout Builder : missing elements in the magic wand #643200

    Hi!

    That’s great you found a workaround!

    Thank you for using Enfold :)

    Cheers!
    Vinay

    in reply to: Text not in center (cut off) on mobile devices! #643199

    Hey TobYi,

    Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:

    This will affect all the h1 size it is best to use a custom class name on a colorsection or h1 element and target it.

    To enable custom css class name please check http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/

    @media only screen and (max-width: 767px) {
    	h1.av-special-heading-tag {
    	font-size:35px!important;
    }}
    

    Best regards,
    Vinay

    in reply to: Widget search form #643194

    Hi!

    Glad to help :)

    Cheers!
    Vinay

    in reply to: Accordion toogle headline color highlight by hoover #643193

    Hey alexandernoe,

    Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:

    .av_toggle_section .toggler {
    color:#63666a!important;
    }
    .av_toggle_section .toggler:hover {
    color:#c1b49a!important;
    }
    

    Best regards,
    Vinay

    in reply to: Layout Builder : missing elements in the magic wand #643192

    Hey caudebert!

    Yes it is correct. The columns are not available under the tab’s.

    You can use custom css and paste the html inside the < code > tags.

    Add the below css in your child theme styles or under Enfold > General Styling > Quick CSS

    .col-50p {
    	width: 50%;
    	padding:30px;
    	float: left;
    	border:2px solid #000;
    }

    and this html in tabs > Edit > Text view

    <code>
    <div class="col-50p">column 1</div>
    <div class="col-50p">column 2</div>
    </code>

    Regards,
    Vinay

    in reply to: Disable links in Post Gallery #643189

    Hey xxosema,

    Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:

    a.av-masonry-entry.post{
    	pointer-events:none;
    }
    

    Best regards,
    Vinay

    in reply to: site not working since WordPress update #643188

    Hey blackbarrow,

    The site looks good on my end. You may not see the changes until the cached files are cleared in your browser.

    Please try to hard refresh by pressing Ctrl + Shift + F5 on your browser or press the F12 key to open chrome dev tools and right click on the refresh button and select “Empty Cache and Hard Reload” and review the site again.

    Best regards,
    Vinay

    in reply to: Pages Header Overlay #643186

    Hey!

    Glad to help :) We really appreciate it if you rate our theme on themeforest :)
    To know more about enfold features please check – http://kriesi.at/documentation/enfold/
    Thank you for using Enfold!

    Best regards,
    Vinay

    in reply to: Parsing Error #643185

    Hi!

    Glad the site is back up! I guess the code had a syntax error or may be already there was a function by the same name which could have caused a conflict and crashed the site. If you face the same issue again in the future access the functions.php via FTP and remove the last bit of code block that you added and re-upload it. The site should work fine. However it’s best to create a staging server on your local machine to test out codes and move it to live site :)

    Cheers!
    Vinay

    in reply to: Full screen images in lightbox #643183

    Hey!

    Glad to help :)
    Thank you for using Enfold.

    Best regards,
    Vinay

    in reply to: Widget search form #643182

    Hi,

    Sorry for the delay, Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:

    #top #s {
    	background-color: #172144!important;
    	color: #fff!important;
    	padding-left: 55px!important;
    	border:none!important;
    }
    #searchsubmit {
    	right:auto!important;
    }
    

    Best regards,
    Vinay

    in reply to: Set image to open up lightbox gallery #643180

    Hi,

    The code was designed to work on the only lightbox gallery which was on the example page however it appears that the lightbox gallery has changed to a slider now. I could not notice any other lightbox gallery.

    Please let us know if there is anything we can help you with.

    Best regards,
    Vinay

    Hey Envato_Prolin,

    This might be a false positive, however I will notify our developer team to have a look at this.

    Thank you for using Enfold.

    Best regards,
    Vinay

    Hey LegendKillerBV,

    To make the video parallax visible under the header please use the “Transparent Header” on the right sidebar options Layout > Header visibility and transparency

    Best regards,
    Vinay

    in reply to: Layer slider problem with the height #643172

    Hi,

    Glad we could help :)

    Best regards,
    Vinay

    Hey stevekudo,

    That is a bit strange but don’t worry we are here to help. As I understand the Products menu seen in the below screenshot is missing correct?

    We need to take a closer look please post us your login credentials (in the “private data” field), so we can take a look at your backend.

    Login credentials include:

    • the URL to the login screen
    • a valid username (with full administration capabilities)
    • as well as a password for that username

    Best regards,
    Vinay

    in reply to: Sidebar same height as content / 100% height #643168

    Hi,

    Try the below code in child theme css

    .sidebar, .sidebar_right {
       min-height: calc(100vh - 250px)!important;
    }

    If this does not work we need to be able to inspect the site please get back to us with a link to your site where we can access it. Without being able to inspect, there is not much we can do at this point :/

    Best regards,
    Vinay

    in reply to: Missing Slider #643167

    Hey dreamitsolutions,

    The site looks good on my end. You may not see the changes until the cached files are cleared in your browser.

    Please try to hard refresh by pressing Ctrl + Shift + F5 on your browser or press the F12 key to open chrome dev tools and right click on the refresh button and select “Empty Cache and Hard Reload” and review the site again.

    Best regards,
    Vinay

    in reply to: Custom 404 Page #643119

    Hi,

    An alternate solution is to use a 404 plugin please give it a try here https://wordpress.org/plugins/search.php?type=term&q=custom+404

    Best regards,
    Vinay

    in reply to: Change text color in a "Text Block". #643116

    Hi,

    Glad it is sorted :)

    Thank you for using Enfold.

    Best regards,
    Vinay

    in reply to: Transparency Menu on Mobile Issues #643115

    Hey Snerp,

    1. To fix the menu font color we added the below css in Enfold > General Styling > Quick CSS

    /* mobile menu text color*/
    @media only screen and (max-width: 767px) {
    #mobile-advanced, #mobile-advanced a, #mobile-advanced .mega_menu_title {
        color: #000;
    }
    #mobile-advanced a:hover {
        color: #9B857A!important;
    }
    #mobile-advanced a:hover::before {
        color: #9B857A!important;
    }
    }
    

    2. To fix the logo please upload a dark version in Enfold > Theme Options > Logo

    Best regards,
    Vinay

    in reply to: Search Box Font Color #643110

    Hey Derek,

    Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:

    #top #s {
        color: #000;
    }
    

    Best regards,
    Vinay

    in reply to: Full screen images in lightbox #643109

    Hi,

    Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:

    img.mfp-img {
    min-width: 100vw;
    min-height: 100vh;
    }
    div.avia-popup .mfp-close {
    	top:50px!important;
    	right:30px!important;
    }
    

    Please note the custom css will make the images look squashed the image in small screens. At the moment there is no easy way to do this by using a small custom code snippet, so I am afraid its out of the scope of our support.

    But please feel free to request such feature at our feature request system: https://kriesi.at/support/enfold-feature-requests/

    This system allows us to keep track of user suggestions and lets you vote on the feature you would like to see the most. I am afraid though there is no guarantee that a feature will get implemented. If that’s something you really need you can always try to hire a developer for the task :)

    Alternatively you could try using plugin like

    https://wordpress.org/plugins/blueimp-lightbox/faq/

    http://www.ilightbox.net/

    http://www.fancyapps.com/fancybox/

    Best regards,
    Vinay

    in reply to: submenu element rolldown menu setup #643103

    Hey nesaceves11,

    To achieve the one page scroll effect create different colorsections and add unique #ID to the sections and add the same ID in the menu.

    Please refer to this link for more info http://kriesi.at/documentation/enfold/add-anchors-to-your-page-for-single-page-navigation/

    Best regards,
    Vinay

    in reply to: Remove Navigation for One-Page Site #643102

    Hey breakpoint,

    Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:

    
    #main {
        padding-top: 50px!important;
    }
    

    Best regards,
    Vinay

    in reply to: Problem with two columns #643095

    Hi,

    Glad we could help! :)

    Best regards,
    Vinay

    in reply to: Image Overlay — Square then Circle #643093

    Hi,

    Glad we could help! We really appreciate it if you rate our theme on themeforest :)
    To know more about enfold features please check – http://kriesi.at/documentation/enfold/
    Thank you for using Enfold!

    Best regards,
    Vinay

    in reply to: Left align text in fullwidth button #643092

    Hi,

    Please add the icon inside a 1/1 col if you already have and is still floating to the left edge we need to take a closer look please post us your login credentials (in the “private data” field), so we can take a look at your backend.

    Login credentials include:

    • the URL to the login screen
    • a valid username (with full administration capabilities)
    • as well as a password for that username

    Best regards,
    Vinay

Viewing 30 posts - 6,931 through 6,960 (of 10,428 total)