Forum Replies Created

Viewing 30 posts - 50,101 through 50,130 (of 66,271 total)
  • Author
    Posts
  • in reply to: Enfold Logo trouble #402461

    Hey!

    I checked the site and it is using an image from the current domain as logo: //foxfiredev.net/wp-content/uploads/2014/11/857934_1406426956257265_1242999983_o61.png

    Did you figure out what the problem was?

    Best regards,
    Ismael

    in reply to: Zooming in on an image in the lightbox #401987

    Hey!

    Use this plugin instead: https://wordpress.org/plugins/simple-image-sizes/

    Go to Settings > Media.

    Best regards,
    Ismael

    in reply to: Reduce margins between Layout Elements #401985

    Hi!

    First, edit the color section. Look for the For Developers: Section ID field. That is where you want to put the custom id attribute (custom-section). If you want to tighten up or decrease the margin between rows, use this on Enfold > General Styling > Quick CSS field:

    body #custom-section .column-top-margin {
    margin-top: 10px;
    }

    Cheers!
    Ismael

    in reply to: Magazine issue #401980

    Hi!

    Edit confg-templatebuilder > avia-shortcodes> magazine.php, look for this code on line 583:

    $output .=			"<time class='av-magazine-time updated' {$markupTime}>".$time."</time>";
    			$output .=			$separator.$author_output;
    			$output .=			"<{$titleTag} class='av-magazine-title entry-title' {$markupTitle}>{$title}</{$titleTag}>";

    Replace it with:

    $output .=			"<{$titleTag} class='av-magazine-title entry-title' {$markupTitle}>{$title}</{$titleTag}>";
    $output .=			$separator.$author_output;
    			$output .=			"<time class='av-magazine-time updated' {$markupTime}>".$time."</time>";

    On the same file, look for this code on line 529:

    $title	 		= "<a href='{$link}' {$titleAttr}>".get_the_title($entry->ID)."</a>";
    

    Replace it with this code to remove the link:

    $title	 		= "<a {$titleAttr}>".get_the_title($entry->ID)."</a>";
    

    Regards,
    Ismael

    in reply to: Bug on Media Entries Page #401978

    Hey!

    Please give us an access to the dashboard. We would like to check it.

    Cheers!
    Ismael

    in reply to: Layerslider not displaying videos on mobile #401970

    Hi!

    1.) It’s only a test page. It only proves that the shortcode works. Of course, you need to edit it to match the current slider.

    2.) Try to deactivate all plugins except woocommerce. See if that helps.

    Cheers!
    Ismael

    in reply to: English in backend, danish in frontend #401932

    Hey!

    Set the language back to default then add this to the functions.php to disable theme options translation:

    if(!function_exists('avia_lang_setup'))
    {
    	add_action('after_setup_theme', 'avia_lang_setup');
    	function avia_lang_setup()
    	{
    		if(!is_admin())
    		{
    			$lang = apply_filters('ava_theme_textdomain_path', get_template_directory()  . '/lang');
    			load_theme_textdomain('avia_framework', $lang);
    		}
    	}
    }

    Best regards,
    Ismael

    in reply to: IMAGES WITH HOTSPOTS #401930

    Hey dwebprojects!

    Thank you for using Enfold.

    No, unfortunately, it’s not possible to add links to the image hotspots. You can request it on our Feature Requests page.

    Regards,
    Ismael

    Hey Kevin!

    Thank you for using Enfold.

    Can you please provide a screenshot of what you’re trying to do with the title? If you build the page using the advance layout editor, edit template-builder.php. Look for the avia_title function.

    Cheers!
    Ismael

    in reply to: Advanced Search Problem #401923

    Hey!

    Still not sure why the tag pages aren’t working. What happens when you delete the Ultimate Tag Cloud Widget plugin?

    Cheers!
    Ismael

    in reply to: Enfold/ Permanent underlining of menu items #401915

    Hey!

    The code on your Quick CSS field is incorrect. Also, the anchor name on the color section were capitalized. Make sure that the anchor name and links are identical. Please remove browser cache then check the page: http://www.puertaburritos.com/

    Cheers!
    Ismael

    in reply to: Embed videos in to blog posts #401910

    Hi!

    Instead of adding the video link, please use the video shortcode inside the Shortcode Wand > Media Elements panel.

    Cheers!
    Ismael

    in reply to: Using sub menu text on the Default demo? #401909

    Hi!

    I’m sorry but please let us know once the site is live, we’ll check it then. Note the menu description will only work when left or right sidebar menu (Enfold >General Layout > Logo and Main Menu) is activated. It’s not going to work for the default header layout.

    Regards,
    Ismael

    in reply to: Side Navigation #401899

    Hey!

    You can set the avia_post_nav to filter by category. Add this to the functions.php file:

    add_filter('avia_post_nav_settings', 'avia_post_nav_settings_mod');
    function avia_post_nav_settings_mod($settings)
    {
    	$settings['is_fullwidth']  = false;
    	$settings['same_category'] = true;
    	return $settings;
    }

    Best regards,
    Ismael

    in reply to: Accordion not closing #401891

    Hi!

    I’m not sure if this is going to work but you can try this on functions.php:

    add_action('ava_after_main_container','ava_after_main_container_mod');
    function ava_after_main_container_mod() {
    echo '<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js" type="text/javascript"></script>';
    echo '<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.21/jquery-ui.min.js" type="text/javascript"></script>';
    }

    Best regards,
    Ismael

    in reply to: Home page doesn't load #401889

    Hi!

    The “home” link is set to “http://www.susanlstewart.com/redesign/&#8221; which is a page that doesn’t exist.

    Cheers!
    Ismael

    in reply to: One Menu Dropdown is a Different Color #401887

    Hi suburbanite!

    Thank you for using Enfold.

    Add this to the Quick CSS field:

    #top #wrap_all .av-main-nav ul > li > a {
    background-color: #ffffff !important;
    }

    Cheers!
    Ismael

    in reply to: Open portfolio custom link in a new page #401886

    Hey!

    Add this to the functions.php file:

    add_action('wp_footer', 'ava_grid_target');
    function ava_grid_target(){
    ?>
    <script>
    (function($){
    	  $(".grid-image").each(function() {
    	  	$(this).attr('target', '_blank');
    	  });
    })(jQuery);
    </script>
    <?php
    }

    Best regards,
    Ismael

    in reply to: Enfold Update / Woocommerce #401880

    Hey!

    Good morning. We would like to help but you’re not following our suggestions. We asked you to do this:

    2.)The account links are automatically created on the Replete theme but it’s not the same on Enfold. You need to create the Enfold Secondary Menu manually on Appearance > Menus panel.

    3.) Try to set the permalinks on Settings > Permalink panel to Post name. My Account Endpoints endpoints should work like this (assuming you set “Account” page as My Account Page. http://franzelina.com/account/edit-account

    Anyway, we create a secondary menu. All you need to do is add the menus that you want here: http://franzelina.com/wp-admin/nav-menus.php?menu=3793

    I tried to set the permalink to postname but the website fails to load or a redirect loop occurs when I do this. It must be a plugin conflict. Please deactivate all plugins then test it again. Follow the instruction provided here: https://wordpress.org/support/topic/order-received-endpoint-404-error-1

    Regards,
    Ismael

    in reply to: LOGO IMAGE NOT OCCUPYING CONTAINER WIDTH #401878

    Hey!

    Go to Enfold > Header panel. Set the Header Size to custom pixel value. Adjust the Header Custom Height to 136px.

    Regards,
    Ismael

    in reply to: Height of video content element #401876

    Hi emin!

    Thank you for using Enfold.

    You can increase the height but it will lose its proportion:

    .flex_column.av_one_fourth.avia-builder-el-15.el_after_av_one_fourth.avia-builder-el-last.column-top-margin .avia-video-16-9 {
    padding-bottom: 100%;
    height: 0;
    }

    Best regards,
    Ismael

    in reply to: Main Header #401875

    Hey!

    Remove the “echo”. It should be:

    add_action( 'ava_main_header', 'enfold_customization_header_widget_area' );
    function enfold_customization_header_widget_area() {
    dynamic_sidebar( 'header' );
    }

    If you want to move it inside the header container, edit includes > helper-main-menu.php. Look for this code:

    /*
            * Hook that can be used for plugins and theme extensions (currently:  the woocommerce shopping cart)
            */
            do_action('ava_main_header');

    Move it below this line:

    <div class='container'>
    				 
    					<div class='inner-container'>
    

    Cheers!
    Ismael

    Hey!

    I’m sorry, I copied the whole avia_post_nav function to the child theme’s functions.php and it somehow broke the site because there is an excess bracket. Please override the functions.php on your child theme folder. Add this code:

    http://pastebin.com/tNSKxzJ7

    Again, I’m very sorry for the inconvenience.

    Regards,
    Ismael

    in reply to: Second Sidebar Pages Question – moving code to child theme #401872

    Hi!

    I tested this code on functions.php and it adds the custom widget area called Sidebar Blog 2. If you’re worried about losing the existing widgets, rename the widget area then transfer the widgets to the newly created sidebar.

    Regards,
    Ismael

    in reply to: Getting the Sidebar to show the Parent/Grandparent #401871

    Hey!

    Can you please provide a link to a child or granchild page? We would like to check it. A screenshot will help.

    Best regards,
    Ismael

    in reply to: Kontaktformular #401869

    Hi Austrianweb!

    Thank you for using Enfold.

    I tested the contact form and I was able to send a test message. Did you receive it? If not, try to use this plugin: https://wordpress.org/plugins/contact-form-7/

    If you still can’t receive any emails using the suggested plugin above, there’s something wrong with the email configuration. Please contact your hosting provider.

    Regards,
    Ismael

    in reply to: Menu and Formatting Messed Up After Updating Enfold #401868

    Hi!

    Please check it now: http://dev.skloff.com/

    For further modifications, please visit Envato Studio or Werkpress.

    Cheers!
    Ismael

    in reply to: Second header widget #401867

    Hi!

    You didn’t change the widget or sidebar area name. Please try this:

    add_action( 'ava_main_header', 'enfold_customization_header_widget_area' );
    function enfold_customization_header_widget_area() {
    echo "<div class='header-widget'><div class='container'>";
    echo dynamic_sidebar( 'Sidebar Pages' );
    echo dynamic_sidebar( 'Sidebar Blog' );
    echo "</div></div>";
    }

    This will echo out the widget areas called Sidebar Pages and Sidebar Blog. You can change that to your own custom widget area. If possible, please provide a screenshot of what you’re trying to do with the header.

    Best regards,
    Ismael

    in reply to: Social Share bar at Portfolio Entry #401865

    Hi!

    Yes, you can use this on the functions.php file:

    add_filter('avf_template_builder_content', 'avia_add_social_toolbar_template_builder', 10, 1);
    function avia_add_social_toolbar_template_builder($content = "")
    {
    	if(is_singular('portfolio')){
    	$content .= avia_social_share_links(array(), false);
    	$content .= '';
    	}
    	return $content;
    }

    Best regards,
    Ismael

    in reply to: Problems with side options and upload logo and favicon #401864

    Hi!

    Looks like you’re using an old version of the theme which is not compatible with WP 4.1. Download the latest version, 3.0.8, then update the theme via FTP.

    Best regards,
    Ismael

Viewing 30 posts - 50,101 through 50,130 (of 66,271 total)