Forum Replies Created
-
AuthorPosts
-
Hello!
I fixed it on your server.
1) You modified functions.php which broke the theme editor.
2) The “Use Google Libraries” does not work properly and breaks the admin page. Please stick to the default wordpress script files.Best regards,
PeterHello!
I corrected the code. It should work now. A ‘ sign was missing.
Regards,
PeterHi!
Please use following code – it should work
add_filter( 'avf_google_heading_font', 'avia_add_heading_font'); function avia_add_heading_font($fonts) { $fonts['Open Sans'] = 'Open Sans:400&subset=latin,latin-ext'; $fonts['Ubuntu Condensed'] = 'Ubuntu Condensed:400&subset=latin,latin-ext'; return $fonts; } add_filter( 'avf_google_content_font', 'avia_add_content_font'); function avia_add_content_font($fonts) { $fonts['Open Sans'] = 'Open Sans:400&subset=latin,latin-ext'; $fonts['Ubuntu Condensed'] = 'Ubuntu Condensed:400&subset=latin,latin-ext'; return $fonts; }
You can also load a different font weight – just replace 400 with another value. You can also load several weights (separate them with a comma like 400,700)
Regards,
PeterHey!
Yes, both use the same color setting. You can change the color of the strong elements easily though – add following css code to your child theme stylesheet (or insert it into the quik css field) and change the color value
.main_color strong{ color: #42a0bd; }
Regards,
PeterI tagged this thread for Kriesi. He developed the framework and he can comment on the issue.
Hello!
I’m not sure what causes the issue but something adds a page (called “auto draft”) to the database. I tried to delete the page but then it shows up in the breadcrumb again. I now solved the issue with a small function which removes the “Auto Draft” link from the breadcrumb. I added the code to the child theme functions.php.
function avia_fix_breadcrumb_trail($trail) { foreach($trail as $key => $data) { if(strpos($data, 'Auto Draft') !== false) unset($trail[$key]); } return $trail; } add_filter('avia_breadcrumbs_trail','avia_fix_breadcrumb_trail');
Cheers!
PeterHey oliviad!
Open up functions.php and add following code at the very bottom of the file
add_action('after_setup_theme','avia_remove_portfolio_breadcrumb'); function avia_remove_portfolio_breadcrumb(){ remove_filter('avia_breadcrumbs_trail','avia_modify_breadcrumb'); }
Best regards,
PeterHello Pictori!
Please create me an admin account and post the login credentials as private reply. I’ll look into it.
Regards,
PeterOctober 15, 2013 at 11:12 am in reply to: Translated blog posts not visible in 2nd WPML language #175559This reply has been marked as private.October 15, 2013 at 10:59 am in reply to: Translated blog posts not visible in 2nd WPML language #175554Hello!
Please make sure that the user has admin rights – I need to modify the theme files to debug the issue.
Best regards,
PeterOctober 15, 2013 at 10:27 am in reply to: Please help me remove "import sample sliders" link/button from layerslider wp #175545Hi 666666!
Open up /wp-content/themes/enfold/config-layerslider/LayerSlider/list.php and delete following code line
<a href="?page=layerslider&action=import_sample" class="add-new-h2"><?php _e('Import sample sliders', 'LayerSlider') ?></a>
Cheers!
PeterOctober 15, 2013 at 10:16 am in reply to: Translated blog posts not visible in 2nd WPML language #175543Hi!
Please create me an admin account and post the login credentials as private reply. I’ll look into it.
Cheers!
PeterHello!
Use following css code to re-size the logo
.bottom_nav_header.social_header #header_main .container { height: 156px; line-height: 156px; }
Obviously you can use a different value for the height (i.e. 100px).
You can change the social icon position with
#header_main .social_bookmarks { right: auto; left: 0; }
Cheers!
PeterHello Lene Larsen!
The theme styling is heavily customized and it’s beyond the scope of our support forum. However I noticed that all css code modifications can be found in a stylesheet ( http://www.vacanzanimaux.fr/wp-content/themes/vacanzanimaux/modifs.css ) and you can probably use it as a starting point.
Best regards,
PeterHello Semel!
Yes, you can remove these folders but you also need to delete some lines in functions.php. Open up the file and search for
require_once( 'config-wpml/config.php' );
and
require_once( 'config-bbpress/config.php' ); //compatibility with bbpress forum plugin
and
require_once( 'config-woocommerce/config.php' ); //compatibility with woocommerce plugin
Delete these lines and afterwards you can delete the folders. If you want to remove the strings from the po/mo files you can use Codestyling to “re-scan” the files: http://wordpress.org/plugins/codestyling-localization/
Best regards,
PeterHi mhiller!
Can you please make a screenshot of the styling issue? I checked the website with Chrome & Firefox and both browsers seem to display the icon box just fine.
Cheers!
PeterHi!
Use following css code
.cart-collaterals .cart_totals table tr td { text-align: left; }
Regards,
PeterHello!
Personally I can’t reproduce the issue on my pc but I tagged the thread for the other support staff members – maybe they can reproduce it and provide a css fix.
Best regards,
PeterOctober 15, 2013 at 9:30 am in reply to: Warning: Invalid argument supplied for foreach() in … postslider on line 443 #175523Hello!
Please try to flush the permalinks (go to Settings > Permalinks and click the blue button to save the permalink rewrite rules).
Cheers!
PeterHey DavyE!
I think I managed to create a sql query which fixes the issue. I already sent the patch to Kriesi and it will be part of the next update if we don’t find any issues.
Regards,
PeterOctober 14, 2013 at 10:44 am in reply to: Replace the search icon in the header with a search form #175007Hey!
I marked this code for Kriesi. He created the tooltip code and he can probably answer the question quicker than I can.
Cheers!
PeterOctober 14, 2013 at 10:23 am in reply to: Change the Layout of "Blog Space" in Avia Designer #175001Hi!
It depends on the blog layout. If you use the “blog grid” layout you just need to modify /wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/postslider.php (see instructions above).
Best regards,
PeterOctober 14, 2013 at 10:22 am in reply to: Seperate Sidebar on all of my events – using event manager plugin #175000Hi!
I hope it worked out? If not you can also try: http://wordpress.org/plugins/widget-logic/ to show certain widgets on event pages only.
Best regards,
PeterHello!
The TinyMCE Advanced plugin caused the issue. I deactivated it now. You can try another plugin (like: http://wordpress.org/plugins/ultimate-tinymce/ ) instead.
Regards,
PeterHello!
Please let us know if Devin suggestion helped you or not.
Regards,
PeterHello!
Please try to add following code into the quick css field to fix the issue
#top .hr { float: none; }
Best regards,
PeterHello!
All these functions – i.e. do_action(), __(), get_header(), etc. are standard wordpress functions. If they’re not defined wordpress does not load properly. Try to re-install wordpress and if this doesn’t help increase the allocated php memory to 128M: http://codex.wordpress.org/Editing_wp-config.php#Increasing_memory_allocated_to_PHP
If it still doesn’t work I’d recommend to contact the hoster – maybe they can provide some useful hints why WordPress does not load the core functions.
Best regards,
PeterHi!
Personally I’d recommend to use a shortcode instead of html code because you can edit/replace it easier. Generate the progress bar shortcode on a post editor page (you can use the magic wand icon to generate shortcodes) and then copy/paste the icon into the “Custom HTML content” field of your LayerSlider slide. Afterwards save the slide and the progress bar should appear on your website. The slider preview will not show the shortcode properly though because it just shows the text of the shortcode. Note that the shortcode is not responsive if you use it within the LayerSlider and I recommend to add it to the center of the slide to avoid display errors for users with smaller screens.
Cheers!
PeterHello dgoranov!
Since v2.1 Enfold uses wp_mail() by default and you don’t need this code. The mail code can be found in wp-content\themes\enfold\framework\php\class-form-generator.php and Enfold uses following code
$header .= 'From: '. $from . " <".$from."> \r\n"; wp_mail($to, $subject, $message, $header);
to send the mail.
Cheers!
Peter -
AuthorPosts