Forum Replies Created
-
AuthorPosts
-
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,
IsmaelHey!
Use this plugin instead: https://wordpress.org/plugins/simple-image-sizes/
Go to Settings > Media.
Best regards,
IsmaelHi!
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!
IsmaelHi!
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,
IsmaelHey!
Please give us an access to the dashboard. We would like to check it.
Cheers!
IsmaelHi!
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!
IsmaelHey!
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,
IsmaelHey 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,
IsmaelFebruary 25, 2015 at 10:10 am in reply to: Move page title out of band out of the header and into the content area #401929Hey 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!
IsmaelHey!
Still not sure why the tag pages aren’t working. What happens when you delete the Ultimate Tag Cloud Widget plugin?
Cheers!
IsmaelHey!
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!
IsmaelHi!
Instead of adding the video link, please use the video shortcode inside the Shortcode Wand > Media Elements panel.
Cheers!
IsmaelHi!
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,
IsmaelHey!
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,
IsmaelHi!
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,
IsmaelHi!
The “home” link is set to “http://www.susanlstewart.com/redesign/” which is a page that doesn’t exist.
Cheers!
IsmaelHi 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!
IsmaelHey!
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,
IsmaelHey!
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,
IsmaelHey!
Go to Enfold > Header panel. Set the Header Size to custom pixel value. Adjust the Header Custom Height to 136px.
Regards,
IsmaelHi 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,
IsmaelHey!
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!
IsmaelFebruary 25, 2015 at 7:13 am in reply to: Set Avia Post Nav to only navigate between posts of the same category #401874Hey!
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:
Again, I’m very sorry for the inconvenience.
Regards,
IsmaelFebruary 25, 2015 at 7:07 am in reply to: Second Sidebar Pages Question – moving code to child theme #401872Hi!
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,
IsmaelFebruary 25, 2015 at 7:05 am in reply to: Getting the Sidebar to show the Parent/Grandparent #401871Hey!
Can you please provide a link to a child or granchild page? We would like to check it. A screenshot will help.
Best regards,
IsmaelHi 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,
IsmaelFebruary 25, 2015 at 6:59 am in reply to: Menu and Formatting Messed Up After Updating Enfold #401868Hi!
Please check it now: http://dev.skloff.com/
For further modifications, please visit Envato Studio or Werkpress.
Cheers!
IsmaelHi!
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,
IsmaelHi!
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,
IsmaelFebruary 25, 2015 at 6:40 am in reply to: Problems with side options and upload logo and favicon #401864 -
AuthorPosts