Forum Replies Created

Viewing 30 posts - 2,881 through 2,910 (of 34,575 total)
  • Author
    Posts
  • in reply to: Social media icons on mobile menu #1440684

    Hey divinecurio,
    Try following this solution.

    Best regards,
    Mike

    Hey Robert Sink,
    Thanks for your question, for products we recommend the WooCommerce plugin and it allows product variations.
    To add custom fields to the checkout there are a few different plugins that you can use, while I don’t recommend any specific one and have not tested all of them, I tried the free Checkout Field Editor for WooCommerce and it allowed me to add a test field to my demo site. So I imagine the others will also work for you, you can try them and see which one works best for you.
    Please note that we can’t ensure that all plugins will work with the theme, as there are tens of thousands of them, but typically I would expect that you will find a few that will work fine.

    Best regards,
    Mike

    in reply to: SearchWP #1440679

    Hi,
    Please include FTP access so we can try some different parameters.

    Best regards,
    Mike

    in reply to: Update WordPress and Enfold #1440626

    Hi,
    Downloading your site files will not be enough because you need to also backup your site database, this is where your site data, posts & pages, and your theme settings are stored.
    Most webhosts have a backup feature, check with your webhost how you can backup your site & database, and how to restore it if you need to.
    Once your are confident that you can restore a backup then go ahead and update your site.
    Here is an easy way to update your site manually:
    First download the latest installable WP version from your Theme Forest account and upload it to your WordPress ▸ Appearance ▸ Themes ▸ Add Themes ▸ Add New
    WordPress_Appearance_Themes_Add-Themes_Add-New.jpg
    after you choose the zip file and click install, you will see a This theme is already installed message because you are updating, you can continue
    Installing_theme_from_uploaded_file_This_theme_is_already_installed.jpg
    then you will see the Theme updated successfully message.
    Theme_updated_successfully.jpg

    Best regards,
    Mike

    in reply to: Show “Array” on contact form #1440624

    Hi,
    It looks like your plugin is not working correctly, I tried adding the shortcode to a code block element and a text block element on the page and it still gave the “Array” error:
    Enfold_Support_5584.jpeg
    so it seems the error is not related to the contact form, I have not used the plugin so perhaps there is a setting that you need to set, try checking with the plugin author.
    I also tried adding shortcode to the Custom HTML element in the contact form using the shortcode wand:
    Enfold_Support_5578.jpeg
    and it worked correctly:
    Enfold_Support_5580.jpeg
    so it doesn’t seem that the error is related to the contact form not allowing shortcodes:
    Enfold_Support_5582.jpeg
    If this used to work then perhaps there is another plugin causing a confict, try disabling your other plugins and checking.
    I notice in the plugin settings that there are many uses that require the Pro version, perhaps the error is related to that or that the API keys are not accepted? Try asking the plugin support if they have seen this before.

    Best regards,
    Mike

    in reply to: Button position on sliders #1440620

    Hi,
    Try this example CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field to make the background color red, font white, and remove the border radius:

    #top #wrap_all .slideshow_inner_caption .avia-slideshow-button.avia-button {
        background-color: red;
        color: white;
        border-radius: 0;
    }

    adjust to suit.
    To make the button background color blue on hover add this css:

    #top #wrap_all .slideshow_inner_caption .avia-slideshow-button.avia-button:hover {
        background-color: blue;
        color: white;
        border-radius: 0;
    }

    you can also change the font color and border radius on hover.

    Best regards,
    Mike

    in reply to: submenu #1440619

    Hi,
    Try using this code instead:

    function avf_header_setting_filter_mod($header) {
    	if( is_page( 2 ) ) {
    	$header['header_scroll_offset'] = $header['header_scroll_offset'] + 100;
    	}
    	return $header;
    }
    add_filter('avf_header_setting_filter', 'avf_header_setting_filter_mod', 9999, 1);

    Best regards,
    Mike

    in reply to: Slider Image Size not changing #1440596

    Hi,
    Glad Rikard could help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Slider Image Size not changing #1440595

    Hi,
    Glad Rikard could help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Keep position of menu and burger logo on mobile #1440541

    Hi,
    The grid row cells with the logo & “Schrijf je in voor onze nieuwsbrief” is not centered because the cell has the vertical-align set to Top, please set to middle.
    Enfold_Support_5576.jpeg
    Please note that we ask that each thread stays on a specific topic, this helps other users find solutions based on the opening subject line quicker, and helps keep threads from being confusing with multiple topics.

    Best regards,
    Mike

    in reply to: change sidebar background color #1440540

    Hi,
    Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Keep position of menu and burger logo on mobile #1440516

    Hi,
    It looks like you are using custom css to make the header “fixed” on mobile up to 767px, this is why it is doing this, it is not default for the theme.
    Try adding this css to override it:

    @media only screen and (max-width: 989px) {
    #top #wrap_all .av_header_transparency {
        background: transparent !important;
        position: absolute!important;
    }}

    If this doesn’t work then try to find your custom position:fixed; and remove it.

    Best regards,
    Mike

    in reply to: Author bar on blog posts #1440514

    Hey mirr,
    This looks like it is from your aioseo plugin, please check the plugin options.

    Best regards,
    Mike

    in reply to: Show “Array” on contact form #1440513

    Hi,
    It looks like your the shortcode for your captcha plugin is causing this: [bws_google_captcha]
    Try removing it and using the captcha options in the contact forum.

    Best regards,
    Mike

    in reply to: General Style not changing #1440512

    Hi,
    Glad to hear that you have this sorted out, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Xize widget text for all pages #1440465

    Hey schweg33,
    The css you posted is for the title of the widgets, for the text in the widgets try this css and adjust to suit.

    #top [id*="custom_html-"] > .custom-html-widget {
    font-size: 20px;
    font-weight: 400;
    }

    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.

    Best regards,
    Mike

    in reply to: change sidebar background color #1440464

    Hey hansloe,
    Thanks for the link to your page, this depends on what you want to achieve, if you wanted the sidebar only to be white then you could use this css in your Quick CSS field:

    #top #main .sidebar {
    	background-color: #fff;
    }

    but the result would be like this with the space to the right of your sidebar gray like the other side:
    Enfold_Support_5571.jpeg
    If you want the space to the right of your sidebar also white then try this css:

    @media only screen and (min-width: 768px) { 
    #top #main .container_wrap_first.sidebar_right {
      background: linear-gradient(
        to right, 
        #ebebeb 0%, 
        #ebebeb 50%, 
        #ffffff 50%, 
        #ffffff 100%
      );
    }
    #top #main main {
    	background: #ebebeb;
    }
    }

    which will give this result:
    Enfold_Support_5573.jpeg
    Please adjust the color to suit and ensure to copy the code from the forum and not an email notification so the symbols are not converted.

    Best regards,
    Mike

    Hi,
    Try adding the CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field

    Best regards,
    Mike

    in reply to: Private token is invalid #1440458

    Hey celluloproduction,
    Please note that the license is not the same as the token, please see our documentation here and follow the steps closely when you create the token, especially for the specific required permissions, if you still have trouble then try the Envato Market plugin and note that it requires different required permissions, if this still doesn’t work then please contact the Envato support. Envato handles all licenses & tokens, we do not have the ability to issue licenses or tokens.

    Best regards,
    Mike

    Hey MSM,
    Thanks for the link to your site, it looks like you have two elements causing this, for the testimonials try this css:

    @media only screen and (max-width: 480px) { 
    	.avia-testimonial-row {
    	min-height: 688px;
    }
    }
    @media only screen and (min-width: 481px) and (max-width: 1023px) { 
    .avia-testimonial-row {
    	min-height: 423px;
    }
    }
    @media only screen and (min-width: 1024px) { 
    	.avia-testimonial-row {
    	min-height: 297px;
    }
    }

    for the “cool timeline” element try this css:

    @media only screen and (max-width: 1023px) { 
    	.ctl-wrapper {
    	min-height: 348px;
    }
    }
    @media only screen and (min-width: 1024px) { 
    	.ctl-wrapper {
    	min-height: 366px;
    }
    }

    together this seems to solve the issue.

    Best regards,
    Mike

    in reply to: only on home #1440456

    Hey schweg33,
    Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    #top:not(.home) .copyright {
    	display: none;
    }

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

    Best regards,
    Mike

    in reply to: Anpassung Schriftgröße Titel der Blogbeiträge #1440451

    Hi,
    Glad to hear that you have this sorted out, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    Hi,
    Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Youtube related – more videos on Tablet or Mobile #1440447

    Hi,
    Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Youtube related – more videos on Tablet or Mobile #1440445

    Hey trickywisdom,
    unfortunately there is no way to disable that while your videos are hosted on YouTube, try hosting them on your site.

    Best regards,
    Mike

    in reply to: General Style not changing #1440444

    Hi,
    It depends on your webhost as to how to clear it, so I would ask them, perhaps they can disable it until you are done building your site and then enable it again so you won’t have to fight with the cache while you are building the site.

    Best regards,
    Mike

    in reply to: General Style not changing #1440440

    Hi,
    Thanks for the link to your site, it looks like your site is showing a cached version of the css, I tried clearing it and removing the timestamp from the css but the cached version with the timestamp is still showing. Please check if you can clear your webhost cache.

    Best regards,
    Mike

    in reply to: SearchWP #1440438

    Hi,
    The default search results parameter is /?s= and your plugin uses /?swp_form%5Bform_id%5D=1&swps=
    so perhaps if you change the parameter of s in the function to swp_form%5Bform_id%5D=1&swps
    it will direct to your plugin search results page
    Enfold_Support_5522.jpeg
    I recommend testing this modification via FTP and not in the WordPress ▸ Appearance ▸ Theme File Editor in case it crashes your site, you can remove the change easily via FTP even it your site is down.

    Best regards,
    Mike

    in reply to: General Style not changing #1440430

    Hey achristan,
    Please include an admin login in the Private Content area and explain one color that you are trying to change in the general styling so we can check.
    Please note that the Enfold Theme Options ▸ Advanced Styling overrides the general styling, and if you are using a caching plugin or CDN, please disable.

    Best regards,
    Mike

    in reply to: all widget titles the same #1440427

    Hey schweg33,
    Try this CSS:

    #top #wrap_all .all_colors .widgettitle,
    #top [id*="custom_html-"] > h3.widgettitle {
    color: #666666;
    text-transform: none;
    font-size: 23px;
    font-weight: 200;
    }
    

    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.

    Best regards,
    Mike

Viewing 30 posts - 2,881 through 2,910 (of 34,575 total)