Forum Replies Created
-
AuthorPosts
-
Hi!
Bitte erstelle mir einen Admin Account und poste die Login Daten als “Private Reply”. Ich werde mir die Sache ansehen.
Cheers!
PeterHi maratino!
Thanks. I asked Kriesi to look into it. Maybe we can add a masonry gallery “blog layout” to the theme options.
Regards,
PeterOctober 23, 2013 at 1:10 pm in reply to: Changes of server names in database (sql) dump when moving from localhost to ser #179641Hi Hirschjaeger123!
Please try this plugin: WP MIGRATE DB
Replacing the server paths manually won’t work because we use serialized data to store our settings and replacing the sever paths can (and probably will) break the serialized data.Cheers!
PeterHi nrosella!
This is not always possible. Eg scripts like jquery.js and avia.js MUST load at the top (otherwise you’ll break the website) and it makes no sense to load them as inline js which is considered as non-blocking js (see https://developers.google.com/speed/docs/insights/BlockingJS ) because then the browser can’t cache the js files and you add 60-80kb unnecessary data to the html document. Like the article explains ( https://developers.google.com/speed/docs/insights/BlockingJS ) this makes only sense with very small scripts but not with the jquery framework script or bigger scripts like avia.js.
These pagespeed hints are just guidelines and it’s not always the best practice or reasonable to follow them.
Best regards,
PeterHi yongjin!
You need to use a workaround. Use to the default editor (i.e. of a standard post) and click on the “Magic Wand” icon (text editor toolbar) to generate the button shortcode. Then copy (or cut) the shortcode text and insert it into the accordion text editor field.
Regards,
PeterHi!
Glad it works now.
Best regards,
PeterHi!
Use following code to load the javascript file from the child theme
if(!is_admin()) add_action('wp_enqueue_scripts', 'avia_register_child_frontend_scripts', 100, 1); function avia_register_child_frontend_scripts() { $child_theme_url = get_stylesheet_directory_uri(); //register js wp_register_script( 'avia-js-child-theme', $child_theme_url.'/js/googlelink.js', array('jquery'), 1, false ); wp_enqueue_script( 'avia-js-child' ); }
and place the googlelink.js file into a js folder inside your child theme folder.
Best regards,
PeterHi Jay!
You’re using an outdated version of the theme. Please update to Enfold 2.4.x which is compatible with WP3.6.x and the latest version of jquery.
Best regards,
PeterHi!
It seems like your server blocks the style sheet which contains the font code. When I try to open http://playlearnplay.com/wp-content/uploads/useanyfont/uaf.css it gives me a “permission denied” error.
Best regards,
PeterOctober 23, 2013 at 12:49 pm in reply to: Woocommerce Shop Product Review Tab German Bewertung Style Problem #179627Hi!
Add following code to the child theme style.css file and change the width value (85px) if necessary.
div.product .woocommerce-tabs ul.tabs li.reviews_tab{ width: 85px; }
Best regards,
PeterHi!
I can’t reproduce the issue on my test servers. Maybe someone can create us an admin account and post the login credentials as private reply?
Regards,
PeterHey treeoflifeaz!
No, the widget just supports standard posts but you can try a plugin like: http://wordpress.org/plugins/ultimate-posts-widget/
Best regards,
PeterHi konings194!
Please create us an admin account and post the login credentials as private reply. Please also remove the host file protection and make sure that we can access the web server without editing our host files.
Best regards,
PeterHey crevlon!
Hast du schon probiert 1/4 1/2 1/4 zu wählen? Sollte in etwa denselben Effekt geben. Und falls dann der Inhalt noch zu breit ist, könnte man diesen in ein div schreiben und zu diesem Div etwas padding/margin hinzufügen.
Regards,
PeterHi!
Can you post a link to the broken slider please. I can’t find it and the slider on the homepage seems to work for me: http://www.clipular.com/c?5457729564966912=3eEdTeSDpe6FLCSV4x6UX0zszDs&f=.png
Best regards,
PeterHey!
Please update to the latest version of Enfold (released yesterday) and add following code to the functions.php file to change the label:
add_filter('avf_toggle_sort_first_label','avia_change_toggle_label', 10, 2); function avia_change_toggle_label($all, $params) { $all = "Name of your label"; return $all; }
Cheers!
PeterOctober 23, 2013 at 10:14 am in reply to: The post still shows 8 comments when there are none #179558Hey!
Please create as an admin account and post the login credentials as private reply. We’ll look into it.
Regards,
PeterHey!
I wonder how the Enfold theme can conflict with this plugin. Especially because the php notice (NOTICE: wp-content/plugins/CookieInfo/inc/class.settings-api.php:94 – Undefined index: desc) indicates that the plugin tries to access an array value which is not defined and this error as nothing to do with the theme. You can try some free plugins from here: http://wordpress.org/plugins/search.php?q=cookie if the plugin author can’t help you.
Best regards,
PeterHey!
I tagged the thread for Kriesi – hopefully he came across the issue in the past and can provide some useful tips. I don’t know why the https protocol doesn’t work for you. It won’t even accept the protocol relative urls ( http://blog.httpwatch.com/2010/02/10/using-protocol-relative-urls-to-switch-between-http-and-https/ ) and I’ve no idea why.
Cheers!
PeterHey!
I think it’s a server configuration issue. Something forces the http:// protocol and does not allow https. You can test it on your own. Open up /wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/font-manager.class.php and you’ll notice a new line I added to the file:
$font_list['folder'] = str_replace('http://', 'https://', $font_list['folder']);
It should replace http with https and works on my test server but not on your server. I first thought that I changed the wrong line but in fact your server does not allow https and always replaces https with http again. If you change the line to i.e.:
$font_list['folder'] = str_replace('http://', 'yes://', $font_list['folder']);
the replacement suddenly works and the file paths change to
url('yes://www.livethelife.org/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/assets/fonts/entypo-fontello.woff?v=2') format('woff'), url('yes://www.livethelife.org/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/assets/fonts/entypo-fontello.ttf?v=2') format('truetype'), url('yes://www.livethelife.org/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/assets/fonts/entypo-fontello.svg?v=2#entypo-fontello')
– of course “yes” is not a valid protocol and it just demonstrates the issue with the https string. So it’s not related to the theme code but something on your server (maybe a plugin, maybe the configuration) does not allow the https protocol and will always change it back to http://
Cheers!
PeterHey!
Yes, because we can’t modify the theme files without ftp :)
Regards,
PeterHi!
Please create us an admin account and we’ll look into it. I also tagged this thread for Kriesi in case he wants to look into it.
Cheers!
PeterOctober 21, 2013 at 1:41 pm in reply to: The post still shows 8 comments when there are none #178390Hi!
Just a side note – I temporarily fixed it by replacing
$commentCount = get_comments_number($the_id);
with
//$commentCount = get_comments_number($the_id); $commentCount = $entry->comment_count;
however it’s just a workaround because the get_comments_number() still doesn’t work…
Regards,
PeterOctober 21, 2013 at 1:27 pm in reply to: The post still shows 8 comments when there are none #178386Hey!
Ok I debugged the issue and it seems to be a problem/bug with the WPML plugin. Kriesi uses following code in /wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/postslider.php
$commentCount = get_comments_number($the_id);
to query the comments number. This function seems to work when WPML is deactivated but it breaks when WPML is activated (at least it doesn’t seem to accept the id parameter). However the other functions (i.e. get_permalink() or get_the_post_thumbnail()) work just fine and I think the WPML plugin doesn’t return the right comment count when the get_comments_number() is used within a loop. Please contact the WPML plugin authors and ask them to look into it (you can also link to this post) because I think this is something which needs to be fixed in the WPML core plugin code.
Best regards,
PeterHey!
Enfold uses the default WP_Query class in /wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/portfolio.php to query the portfolio entries. You can try to output the result of the query by replacing
$this->entries = new WP_Query( $query );
with
$this->entries = new WP_Query( $query ); print_r($this->entries);
If the $this->entries output lists the posts in the wrong order too it’s not a theme issue because then WP returns the posts in the wrong order.
Regards,
PeterHi!
Then I recommend to hire a freelancer (i.e. here: http://www.microlancer.com/ ) who can help you to style your “microsite” content for the Enfold theme. Afaik Google will index the content (see: https://support.google.com/webmasters/answer/34445?hl=en ) – especially if you don’t use a multidimensional iframes (iframe within an iframe).
Cheers!
PeterOctober 21, 2013 at 9:48 am in reply to: Stretching header menu to fullwidth instead of 1210px #178338Hi!
You can try to extend the width of the header container – insert following code into the quick css field and adjust the percentage value if necessary:
#header_main .container, .main_menu ul:first-child > li a { width: 95%; }
Cheers!
PeterHi Doug!
Afaik you don’t need a plugin for this. Go to Settings > Reading and use an higher value for the “Blog pages show at most” option.
Best regards,
PeterOctober 21, 2013 at 9:38 am in reply to: The post still shows 8 comments when there are none #178333Hi!
Please create us an admin account and post the login credentials as private reply. We’ll look into it.
Best regards,
Peter -
AuthorPosts