Forum Replies Created

Viewing 30 posts - 6,601 through 6,630 (of 34,893 total)
  • Author
    Posts
  • 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

    Hey flylanddesigns,
    Thanks for your patience, I checked your site and it looks like you have changed you menu back to a top menu, but on one of my test sites I added a lot of menu items to the sidebar header and for smaller tablets it seems that the sidebar header is scrollable, please see the link below. Was yours not scrollable?

    Best regards,
    Mike

    in reply to: Pictures uploading all washed out. #1412848

    Hi,
    I don’t believe that this is a something new, as the post I found is from 2015, the issue points to the PHP GD Library used by WordPress and not from Enfold. As my example post shows not every image size is affected and as you say at some point your color profile in Lightroom had accidentally changed to ProPhoto RGB, which you said that you don’t normally use.
    Anyways, I’m glad that we found the issue and hopefully the Image Magick plugin helps you, but if it doesn’t at least you know how to fix in your lightroom.
    Unless there is anything else we can assist with on this issue, shall we close this then?

    Best regards,
    Mike

    in reply to: Need updates #1412847

    Hi,
    Glad to hear that you have this sorted out, do you mind sharing the steps for future readers that have the same issue?
    To remove the powered by Enfold WordPress Theme in the footer, please see Copyrights info in our documentation, you would go to Enfold Theme Options ▸ Footer ▸ Copyright and add [nolink]

    Best regards,
    Mike

    in reply to: Running a js code #1412846

    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: FTP not correct executed? #1412845

    Hey TakoHof,
    Thanks for the ftp login, it doesn’t look like you have installed WordPress, it looks like you have the theme installed in the root of your domain instead of WordPress.
    Please remove these files and first install WordPress.
    It looks like your webhost is site.eu, please see this article by your webhost and scroll down the heading: How to create a WordPress website easily at Site.eu you will see it says:

    Site.eu offers you one-click installation for 300+ open source systems, including WordPress

    so there is a one click option to install WordPress in your webhost, please look for this or ask your webhost support for help, I’m not familiar with site.eu.
    Then after you install WordPress go to WordPress ▸ Appearance ▸ Themes ▸ Add Themes ▸ Add New and install Enfold.
    WordPress_Appearance_Themes_Add-Themes_Add-New.jpg
    If you have trouble installing the theme after you install WordPress then include a admin login for us in the Private Content area below so we can help, but first you need to install WordPress.

    Best regards,
    Mike

    in reply to: Installation is not working #1412844

    Hi,
    Thanks I found it, please contenue there.

    Best regards,
    Mike

    in reply to: Need updates #1412820

    Hi,
    It would the content files, but the real content like posts, pages, and theme settings are all in the database, so you must save the database and find someone the transfur it for you, it is very tricky to do.

    Best regards,
    Mike

    in reply to: Need updates #1412817

    Hi,
    The theme does, and my test site is running fine, but this is not a theme issue core WordPress files are giving a 404 error and reinstalling the WordPress doesn’t solve.
    I have not seen a situation like this before.

    Best regards,
    Mike

    in reply to: Pictures uploading all washed out. #1412816

    Hi,
    I would say that it is safe to test, it was Tested up to: 6.1.3 and it has Active installations: 60,000+

    Best regards,
    Mike

Viewing 30 posts - 6,601 through 6,630 (of 34,893 total)