Forum Replies Created

Viewing 30 posts - 6,661 through 6,690 (of 34,962 total)
  • Author
    Posts
  • in reply to: Menu ID’s for the same page are not working well #1413039

    Hi,
    Do you mean that the mobile you mean the burger menu is not opening, or that it opens but it lands in correctly?
    For me the burger menu is opening and it’s landing correctly on a screen width of 425px, what is your screen width for mobile?

    Best regards,
    Mike

    in reply to: Changing Demo/Themes within Enfold #1412983

    Hi,
    We typically don’t recommend importing a new demo over your existing site for the reason of the message that you saw:

    Importing demo content GYM Demo will overwrite your current Theme Option Settings. It is highly recommended to use a clean installation to import a demo to avoid conflict with existing content and break the import.

    the import is not just swaping styles, it is designed to give the user a starting point on a blank fresh install.
    Ismael makes a good point about exporting your live theme settings as a backup and then taking the theme settings from your staging site and importing them to your lave site as a way to change the style of your site. Give this a try after making a backup.
    Otherwise, since you tested on your staging site of your live install and you checked it carefully and are happy with the results then I would expect the same result for your live site.
    Please create a restore point or backup before proceeding so that if for some reason the live site doesn’t produce the same results you can fall back to your current state.
    Please use your webhost backup option as many “backup” plugins don’t perform as expected.

    Best regards,
    Mike

    in reply to: Masonry gallery alignment issue #1412977

    Hi,
    Glad to hear that you have this sorted out, I see this as an unexpected combination which I found no other references to. The solution that I came up with needs to be applied to only certain items in only a combination of a certain situations. I believe that this would be better handled on a per case basis with the above script manually.
    We see many unique situations that we adjust with tweaks, but it would not be practical to add each tweak to the theme as it would be too much, I hope this makes sense.
    We will close this thread as you asked, 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,
    I’m not sure why you would want to show the real title and the custom field title at the same time, but I guess you could add the $meta_value to the
    $excerpt line 883 instead and then use the Title & Excerpt option in the post slider element.

    Best regards,
    Mike

    in reply to: Cannot Instal Enfold #1412973

    Hi,
    wp-config.php
    See this article and read #5. Modify wp-config.php File
    Shall we close this thread then?

    Best regards,
    Mike

    in reply to: FTP not correct executed? #1412951

    Hi,
    Try installing via FTP, please see our documentation here.

    Best regards,
    Mike

    in reply to: Background color gradient #1412950

    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: Pictures uploading all washed out. #1412949

    Hi,
    Thank you Guenni007 but I would not have known where to look without your help, Thank You!

    Best regards,
    Mike

    in reply to: Need updates #1412948

    Hi,
    It looks like you have linked to a different domain than before that is using a different theme.
    Was this in error?
    Your previous domain still shows your original site and I would not recommend installing a new demo over it as you will lose your customizations.
    Previously you wrote “all set” so I was under the assumption that your site was “all set”, is this not the case? Where are you at now?

    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

    Hi,
    I found this is the correct code for around line 874 before the switch( $contents ) on line 880:

    $meta_value = get_post_meta($the_id, 'headline_copy_for_homepage_tile', true);
    	if ($meta_value == '') {
    		$meta_value = avia_wp_get_the_title( $entry );
    }

    and change line 893 to:
    $title = $meta_value;
    assuming that your element is set to only show the title.
    Enfold_Support_2560.jpeg
    Now if the item has a headline_copy_for_homepage_tile value then it will show, otherwise the default title will show.
    You can add your modified postslider.php to your child theme, by first ensuring that your child theme functions.php has this functions.php:

    function avia_include_shortcode_template( $paths )
    {
    	if( ! is_array( $paths ) )
    	{
    		$paths = array();
    	}	
    	$template_url = get_stylesheet_directory();
    	array_unshift( $paths, $template_url . '/shortcodes/' );
    	return $paths;
    }
    add_filter( 'avia_load_shortcodes', 'avia_include_shortcode_template', 15, 1 );

    and your child theme directory has the directory /shortcodes/ in it, and then move your modified /postslider/postslider.php into it.

    Best regards,
    Mike

    in reply to: Mega Menu horizontal alignment of columns #1412902

    Hi,
    Thanks for the login, I found that your mega menu column item Teaware by Material was set to start a new row:
    Enfold_Support_2558.jpeg
    I corrected this for you, please check.

    Best regards,
    Mike

    in reply to: social media size #1412901

    Hi,
    Please ad the css to Enfold Theme Options ▸ General Styling ▸ Quick CSS field.
    To “toggle” disable Enfold Theme Options ▸ Performance ▸ JS & CSS file merging and compression then check your site.
    You can re-enable afterward if you like.
    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    Hi,
    Thanks for your patience, I found that if you edit \enfold\config-templatebuilder\avia-shortcodes\postslider\postslider.php on line 893 find:
    $title = avia_wp_get_the_title( $entry );
    and change to
    $title = get_post_meta($the_id, 'headline_copy_for_homepage_tile', true);
    your title will show your custom field “Ten guided principles”
    The only problem is that if the post doesn’t have a custom field no title will show, so I thought that if I add this before the switch( $contents ) on line 880:

    $meta_value = get_post_meta($the_id, 'headline_copy_for_homepage_tile', true);
    					if ($meta_value == '') {
    					avia_wp_get_the_title( $entry );
    					}

    and then change line 893 to:
    $title = $meta_value;
    it would show the title if no custom field is there.
    Enfold_Support_2556.jpeg
    but it doesn’t work, only the custom field is shown.
    Perhaps this will put you on the right path and you can correct my mistake.
    BTW I was only changing the title on line 838 because you are only showing the “title” in the post slider.
    I hope this helps

    Best regards,
    Mike

    in reply to: too much padding around image (whitespace) #1412893

    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

    Hi,
    Your your situation it probably would be best, sorry we were not more help.

    Best regards,
    Mike

    in reply to: too much padding around image (whitespace) #1412889

    Hi,
    You will need to create a new image without extra white spacing.

    Best regards,
    Mike

    in reply to: “twitter feed, linkedin feed, youtube feed “ #1412885

    Hey tulin88,
    if you would like to request this feature the Dev Team has opened a new Github Feature Request for users to place requests and follow them as the Dev Team reviews them.

    Best regards,
    Mike

    in reply to: How can I add WPML #1412884

    Hi,
    It seems that you have a second thread for the same topic.

    Best regards,
    Mike

    in reply to: how to arrange default shop in a grid of 3 rows? #1412883

    Hi,
    Try disabling it and see if you have the same issue.

    Best regards,
    Mike

    in reply to: Google Tag Manager Cookies #1412882

    Hey Blatze,
    Thank you for your patience, please see our documentation Additional Custom Cookies
    but please note that due to browser security limitations, it might not be possible to remove them using JavaScript or PHP.
    The only thread I found about GTM cookies seems to have ended unsuccessful.
    Other users seem to have a good experience with the Borlabs cookie plugin, perhaps it could be used similarly for GTM?

    Best regards,
    M

    in reply to: too much padding around image (whitespace) #1412879

    Hey daves1997,
    Your imagine includes the white space, please use the link below to open the image in a new tab and see
    Enfold_Support_2554.jpeg

    Best regards,
    Mike

    Hi,
    That’s odd, try this at the top of your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    .html_header_left #top .av-main-nav #menu-item-71722 ul,
    .html_header_left #top .av-main-nav #menu-item-71752 ul {
        top: -400px;
    }

    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
    Or try it in your WordPress ▸ Customize ▸ Additional CSS

    Best regards,
    Mike

    in reply to: Blog’s layout changed #1412875

    Hi,
    If I understand correctly, you would link to have your category pages be in two columns?
    Try going to \wp-content\themes\enfold\archive.php on line 61 look for ‘columns’ => 3; and change to 2
    Enfold_Support_2552.jpeg

    Best regards,
    Mike

    in reply to: Adding Dropdown WPML #1412863

    Hi,
    I see that your language switcher is now like this:
    Enfold_Support_2546.jpeg
    But you want it to be a drop down menu, like Guenni007 showed:
    Enfold_Support_2548.jpeg
    and you choose “dropdown” like Guenni007 screenshot?:
    Enfold_Support_2550.jpeg
    Please include an admin login in the Private Content area so we can investigate.

    Best regards,
    Mike

    in reply to: Custom Element doesn’t seem to work properly. #1412862

    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,
    Thanks for your patience, I see in your custom css you have this:

    toggle_icon .hor_icon, .toggle_icon .vert_icon {
        border-color: #ff9900 !important;
    }

    please note that you are missing a dot at the very beginning, please change to this:

    .toggle_icon .hor_icon, .toggle_icon .vert_icon {
        border-color: #ff9900 !important;
    }

    Best regards,
    Mike

    Hi,
    I see, thank you for explaing further, for this we can add custom css to move the sub-menu up, for example:

    .html_header_left .av-main-nav #menu-item-71722 ul,
    .html_header_left .av-main-nav #menu-item-71752 ul {
        top: -400px;
    }

    this moves the “ARTWORK LICENSING” & “SHOP” sub-menus up to mid page, see the screenshot below.
    We can add media queries to this so it only occurs at certain screen sizes, I assume between 768px – 1440px is when you would like this?

    Best regards,
    Mike

    in reply to: Post Slider – Slideshow Autorotation transition #1412857

    Hey domchocolate,
    Thank you for the link to your site and your patience, unfortunately modifing the content slider to slide instead of fading would not be easy, I recommend using the featured image slider as it will auto slide and show the title of the post, below I linked to a test page with the title over the image similar to your site for an example.
    Please give this a try.

    Best regards,
    Mike

    in reply to: Ajax Portfolio images overlapping each other #1412852

    Hi,
    On my server when I try to edit the functions.php I see the error:

    Unable to communicate back with site to check for fatal errors, so the PHP change was reverted. You will need to upload your PHP file change by some other means, such as by using SFTP.

    But this is a not and error from the snippet, these typically a server configuration that prevents the WordPress loopback check to properly check for potential errors.
    This just means that for your site you should update your file via FTP or use a plugin like WPcode plugin this plugin supports PHP code snippets, JavaScript code snippets, & CSS code snippets.
    I checked the code above in my WPcode plugin and it returned no errors, please give this a try.

    Best regards,
    Mike

Viewing 30 posts - 6,661 through 6,690 (of 34,962 total)