Forum Replies Created
-
AuthorPosts
-
No didn’t work. I deactivated all plugins, deleted the Enfold directory, downloaded the latest Enfold version, uploaded the Enfold directory. Then checked without any plugins activated or using the child theme and the problem persists.
October 1, 2015 at 2:52 am in reply to: constructor method for WP_Widget is deprecated since 4.3.0 #511916Okay, it looks like it was a Woocommerce plugin. It’s been updated and the error message is gone. Thanks.
October 1, 2015 at 2:24 am in reply to: constructor method for WP_Widget is deprecated since 4.3.0 #511909I have 3.3.2 installed.
Thank you for your response. I have created a solution with Custom Menu Wizard. Thanks again.
Just checked…the latest version in my downloads section on Themeforest is 3.3.1 ?
Fixed it. Had to add the Google font javascript to the page.
January 25, 2015 at 1:43 am in reply to: 'Show excerpt in all magazine blog list' with "Read More" link #385031This addition to the Functions.php breaks the theme:
require_once( ‘config-templatebuilder/avia-shortcodes/magazine.php’ );
My complete Functions.php in child theme is (without the dividers):
——————————
<?phpfunction remove_avia_search(){
remove_filter( ‘wp_nav_menu_items’, ‘avia_append_search_nav’, 10, 2 );
}
add_action( ‘init’ , ‘remove_avia_search’ );add_theme_support(‘avia_template_builder_custom_css’);
add_filter(‘avf_logo_subtext’, ‘kriesi_logo_addition’);
function kriesi_logo_addition($sub) {
$sub .= “Celebrating 30 years of protection and conservation<br />of the majestic American Bald Eagle!”;
return $sub;
}require_once( ‘config-templatebuilder/avia-shortcodes/magazine.php’ );
——————————
I’m using enfold 3.0.5 and the edit to the magazine.php code is actually on line 587. Editing that line with your code does nothing.
- This reply was modified 9 years, 11 months ago by scarlettr8.
This reply has been marked as private. -
AuthorPosts