Forum Replies Created

Viewing 30 posts - 6,901 through 6,930 (of 25,536 total)
  • Author
    Posts
  • in reply to: Portfolio grid issue after updating to 4.7.6.4 #1270992

    Hey sinodev,

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

    1. Install and activate ” Temporary Login Without Password “.
    2. Go to ” Users > Temporary Logins ” on the left-side menu.
    3. Click ” Create New “.
    4. Add the email address for the account ( you can use (Email address hidden if logged out) ), as well as the ” Role ” making that the highest possible and the expiry about four days
      ( to be sure that we have enough time to debug ).
    5. Click ” Submit “.
    6. You’ll now have a temporary account. Please provide us here in the private section the URL, so we can login and help you out.

    When your issue is fixed, you can always remove the plugin!
    If you prefer to not use the plugin, you can manually create an admin user and post the login credentials in the “private data” field.

    Best regards,
    Nikko

    in reply to: PHP #1270991

    Hi Andrea Casarin,

    Thanks for contacting us!
    There’s no list but the theme is compatible with PHP 7, using PHP 7.3 or 7.4 works best with Enfold.
    PHP 8.0 is not yet compatible but our devs are working for compatibility for the next version.

    Best regards,
    Nikko

    in reply to: Malfunction after 5.6 Update #1270989

    Hi willmannc,

    I tried to check on the Theme Editor for that code showing above however it’s disabled on your site.
    Can you give us FTP access? so we can inspect on it.

    Best regards,
    Nikko

    in reply to: empty area under slider / share Icons disappeared #1270988

    Hi André,

    When you’re logged out, it using a cached version.
    Please try to flush out the cache and check.

    Best regards,
    Nikko

    in reply to: Images in accordian won't align #1270987

    Hi mosaic,

    I checked on the link but I could not find any image, I only see text above then contact form below.

    Best regards,
    Nikko

    in reply to: Page title doesn't show #1270985

    Hi Erwin,

    We’re glad to hear that :)
    Thanks for using Enfold and have a great day!

    Best regards,
    Nikko

    in reply to: Logo is too close to the top #1270984

    Hey Raymonbil,

    Please try adding this CSS code in Quick CSS, located in Enfold > General Styling:

    #top .logo {
        padding-top: 16px;
    }

    Best regards,
    Nikko

    in reply to: Magnific Popup stopped #1270983

    Hey ofekw,

    Please try to install and activate Enable jQuery Migrate Helper plugin, then set the jQuery version to 1.12.4 in the plugin options.

    Best regards,
    Nikko

    in reply to: Enfold Theme Options are missing #1270982

    Hey bemodesign,

    Please try to install and activate Enable jQuery Migrate Helper plugin, then set the jQuery version to 1.12.4 in the plugin options.

    Best regards,
    Nikko

    in reply to: WPML Flag #1270978

    Hi mumince,

    There’s no Load More option for the Portfolio Grid however you can use Masonry then select Portfolio Entries.
    Then set Pagination to Display “Load More” Button.

    Best regards,
    Nikko

    Hi Colin,

    I’m glad to hear that and it’s a much simpler solution :)
    Let us know if you need further assistance.

    Best regards,
    Nikko

    in reply to: Reduce space above and below logo #1270974

    Hi Marco,

    Try to set it in Enfold > Header > Header Size, then set this to custom pixel size and adjust the height.

    Best regards,
    Nikko

    in reply to: How to prevent images from being resized #1270973

    Hi Audrey,

    I have tested the code and it does not cause any errors on my end.
    Can you give us FTP access? we’ll try to add it for you.

    Best regards,
    Nikko

    in reply to: Top Nav Height Fixed at 44px #1270972

    Hi Dick,

    We’re glad to hear that :)
    The next release of Enfold should be around the second half/end of January.
    It would include a new feature, WordPress 5.6 fixes, PHP 8.0 fixes, and fixes to some of the issues that have been reported.

    Best regards,
    Nikko

    in reply to: How to prevent images from being resized #1270905

    Hi Audrey,

    I apologize for that, the error was caused by the extra ‘ after 800, this is the fixed code:

    add_filter( 'avf_modify_thumb_size', 'enfold_customization_modify_thumb_size', 10, 1 );
    function enfold_customization_modify_thumb_size( $size ) {
    	$size['portfolio'] = array('width' => 990, 'height' => 800, 'crop' => false);
    	return $size;
    }

    Best regards,
    Nikko

    in reply to: Content Inside Color Section Not rendering #1270773

    Hi AaronRezzonico,

    I apologize for missing that part.
    Yes, it’s in Enfold > Performance (Theme Options)

    Best regards,
    Nikko

    Hi Colin,

    Thanks for the clarification.
    Please add this PHP code at the bottom of your child theme’s functions.php file:

    function avia_title($args = false, $id = false)
    {
    	global $avia_config;
    
    	if(!$id) $id = avia_get_the_id();
    
    	$header_settings = avia_header_setting();
    	if($header_settings['header_title_bar'] == 'hidden_title_bar') return "";
    
    	$defaults 	 = array(
    
    		'title' 		=> get_the_title($id),
    		'subtitle' 		=> "",
    		'link'			=> get_permalink($id),
    		'html'			=> "<div class='{class} title_container'><div class='container'>{heading_html}{additions}</div></div>",
    		'heading_html'	=> "<{heading} class='main-title entry-title {heading_class}'>{title}</{heading}>",
    		'class'			=> 'stretch_full container_wrap alternate_color '.avia_is_dark_bg('alternate_color', true),
    		'breadcrumb'	=> true,
    		'additions'		=> "",
    		'heading'		=> 'h1',
    		'heading_class'	=> ''
    	);
    	
    	if ( is_product() ) {
    		$defaults['heading_html'] = "<{heading} class='product-title entry-title {heading_class}'>{title}</{heading}>";
    	}
    
    	if ( is_tax() || is_category() || is_tag() )
    	{
    		global $wp_query;
    
    		$term = $wp_query->get_queried_object();
    		$defaults['link'] = get_term_link( $term );
    	}
    	else if(is_archive())
    	{
    		$defaults['link'] = "";
    	}
    
    
    	// Parse incomming $args into an array and merge it with $defaults
    	$args = wp_parse_args( $args, $defaults );
    
    	/**
    		 * @used_by		config-woocommerce\config.php avia_title_args_woopage()				10
    		 * @since < 4.0
    		 * @return array
    		 */
    	$args = apply_filters( 'avf_title_args', $args, $id );
    
    	//disable breadcrumb if requested
    	if($header_settings['header_title_bar'] == 'title_bar') $args['breadcrumb'] = false;
    
    	//disable title if requested
    	if($header_settings['header_title_bar'] == 'breadcrumbs_only') $args['title'] = '';
    
    
    	// OPTIONAL: Declare each item in $args as its own variable i.e. $type, $before.
    	extract( $args, EXTR_SKIP );
    
    	if(empty($title)) $class .= " empty_title ";
    	$markup = avia_markup_helper(array('context' => 'avia_title','echo'=>false));
    	if(!empty($link) && !empty($title)) $title = "<a href='".$link."' rel='bookmark' title='".__('Permanent Link:','avia_framework')." ".esc_attr( $title )."' $markup>".$title."</a>";
    	if(!empty($subtitle)) $additions .= "<div class='title_meta meta-color'>".wpautop($subtitle)."</div>";
    	if($breadcrumb) $additions .= avia_breadcrumbs(array('separator' => '/', 'richsnippet' => true));
    
    
    	if(!$title) $heading_html = "";
    	$html = str_replace('{heading_html}', $heading_html, $html);
    
    
    	$html = str_replace( '{class}', $class, $html );
    	$html = str_replace( '{title}', $title, $html );
    	$html = str_replace( '{additions}', $additions, $html );
    	$html = str_replace( '{heading}', $heading, $html );
    	$html = str_replace( '{heading_class}', $heading_class, $html );
    
    	if(!empty($avia_config['slide_output']) && !avia_is_dynamic_template($id) && !avia_is_overview())
    	{
    		$avia_config['small_title'] = $title;
    	}
    	else
    	{
    		return $html;
    	}
    }

    Hope it helps.

    Best regards,
    Nikko

    in reply to: Content Inside Color Section Not rendering #1270770

    Hi AaronRezzonico,

    Thanks for giving us admin access.
    It seems to be a caching issue, I have disabled CSS file merging and compression and Javascript file merging and compression
    Please review your site.
    After a few days, try to enable those settings mentioned.

    Best regards,
    Nikko

    in reply to: Logo in floating mobile menu #1270766

    Hi Luisgasser,

    Thanks for giving us the link.
    Are you referring to the section that appears when you click on the burger/menu icon?
    If yes, then unfortunately this would require modifying some core js files :(

    Best regards,
    Nikko

    in reply to: Layout builder keeps loading #1270764

    Hi laptophobo,

    I tried to turn off the plugins but the issue still persists.
    I have found a database error in error_logs (private content) please try to fix it first also add this in wp-config.php file:

    define('CONCATENATE_SCRIPTS', false );

    Best regards,
    Nikko

    in reply to: How to prevent images from being resized #1270759

    Hi Audrey,

    Try adding this code in your child theme’s functions.php file:

    add_filter( 'avf_modify_thumb_size', 'enfold_customization_modify_thumb_size', 10, 1 );
    function enfold_customization_modify_thumb_size( $size ) {
    	$size['portfolio'] = array('width'=>990, 'height'=>800', 'crop' => false);
    	return $size;
    }

    Then try to re-upload the image/s if there are lots of them then use Regenerate Thumbnails plugin.

    Best regards,
    Nikko

    in reply to: Header color customizing problems #1270752

    Hi mbesh,

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

    1. Install and activate ” Temporary Login Without Password “.
    2. Go to ” Users > Temporary Logins ” on the left-side menu.
    3. Click ” Create New “.
    4. Add the email address for the account ( you can use (Email address hidden if logged out) ), as well as the ” Role ” making that the highest possible and the expiry about four days
      ( to be sure that we have enough time to debug ).
    5. Click ” Submit “.
    6. You’ll now have a temporary account. Please provide us here in the private section the URL, so we can login and help you out.

    When your issue is fixed, you can always remove the plugin!
    If you prefer to not use the plugin, you can manually create an admin user and post the login credentials in the “private data” field.

    Best regards,
    Nikko

    in reply to: Adding java script #1270750

    Hi annameis,

    The best way you can add it is via hooks:

    function custom_script_name(){
    ?>
    <script>
    
    // Your script here
    
    </script>
    <?php
    }
    add_action('wp_footer', 'custom_script_name');

    For further information check: https://kriesi.at/documentation/enfold/add-custom-js-or-php-script/#add-a-script-to-footer-section

    Then to load it only to a specific page, use the WordPress Conditional Tag: https://codex.wordpress.org/Conditional_Tags

    Hope this helps.

    Best regards,
    Nikko

    in reply to: Enfold Upgrade #1270747

    Hi Jason,

    Thanks for contacting us!
    The default process in doing theme updates is going to Enfold > Theme Updates however since Envato has changed from using API key to token, you won’t be able to update it in this way (manual steps below).
    Also, if you have access to the account used to purchase Enfold you can proceed to the steps below, otherwise, I would suggest purchasing one with your account.

    Please backup your site first:
    – Site Backup: https://kriesi.at/documentation/enfold/backup-wordpress-site/
    – Theme Settings Backup: https://kriesi.at/documentation/enfold/backup-theme-settings/
    Then do the following steps:
    1. Login to ThemeForest and download the Enfold theme, right-click over the downloaded zip file and extract/unzip it.
    2. It should generate a new folder, open it and look for the enfold folder
    3. Right-click the enfold folder then zip it, here’s a tutorial on how to create a zip file in windows: https://www.howtogeek.com/668409/how-to-zip-and-unzip-files-on-windows-10/ (this should create enfold.zip
    4. Log in to WordPress as and Admin.
    5. Install and activate a maintenance plugin and put your site in Maintenance mode.
    6. Go to Appearance > Themes, switch to a default WordPress theme like TwentyTwenty then delete Enfold.
    7. Click on the ADD NEW button.
    8. Click on the UPLOAD THEME button.
    9. Click BROWSE and choose enfold.zip file
    10. Click the INSTALL NOW button and switch to Enfold or your child theme.
    11. Remove the maintenance mode then deactivate and remove the maintenance plugin.

    Best regards,
    Nikko

    in reply to: Saving didnt work! Please reload the page and try again #1270735

    Hey Ross-IT,

    Please backup your site first, then try to do the following steps:
    – Site Backup: https://kriesi.at/documentation/enfold/backup-wordpress-site/
    – Theme Settings Backup: https://kriesi.at/documentation/enfold/backup-theme-settings/
    1. Login to ThemeForest and download the Enfold theme, right-click over the downloaded zip file and extract/unzip it.
    2. It should generate a new folder, open it and look for the enfold folder
    3. Right-click the enfold folder then zip it, here’s a tutorial on how to create a zip file in windows: https://www.howtogeek.com/668409/how-to-zip-and-unzip-files-on-windows-10/ (this should create enfold.zip
    4. Log in to WordPress as and Admin.
    5. Install and activate a maintenance plugin and put your site in Maintenance mode.
    6. Go to Appearance > Themes, switch to a default WordPress theme like TwentyTwenty then delete Enfold.
    7. Click on the ADD NEW button.
    8. Click on the UPLOAD THEME button.
    9. Click BROWSE and choose enfold.zip file
    10. Click the INSTALL NOW button and switch to Enfold or your child theme.
    11. Remove the maintenance mode then deactivate and remove the maintenance plugin.

    Best regards,
    Nikko

    in reply to: Social Media Icons Not Showing in Header Extra Eliments #1270734

    Hi Ryan,

    Thanks for giving us admin access.
    This is now fixed, in Enfold > Advanced Styling > Small bar above Main Menu, I just set Font Color to white (just change this to another color you prefer)

    Best regards,
    Nikko

    in reply to: Burger menu #1270733

    Hi Gr. Hugo,

    We’re glad to hear that :)
    Thanks for using Enfold and have a great day!

    Best regards,
    Nikko

    in reply to: Top Nav Height Fixed at 44px #1270732

    Hi Dick,

    That could possibly be the reason or one of the reasons, can you try to remove that code?
    If that does not work, please try to install and activate Enable jQuery Migrate Helper plugin, then set the jQuery version to 1.12.4 in the plugin options.

    Best regards,
    Nikko

    Hi RosannaK,

    Can you give us a link to where this should apply? so we can try to investigate why it’s not working.

    Best regards,
    Nikko

    in reply to: Mobile Menu not showing #1270730

    Hi Corina,

    You’re welcome :)
    The next release of Enfold should be around the second half/end of January.
    It would include a new feature, WordPress 5.6 fixes, PHP 8.0 fixes, and fixes to some of the issues that have been reported.

    Best regards,
    Nikko

Viewing 30 posts - 6,901 through 6,930 (of 25,536 total)