Forum Replies Created
-
AuthorPosts
-
March 3, 2014 at 11:33 am in reply to: How to Integrate Google Custom Search (CSE) into Enfold #231485
Hi!
Thank you for the feedback!
Cheers!
PeterHi!
You can try to use the “Widget Area” element and a custom widget area to display the “Event Calendar” widgets within the content.
Best regards,
PeterHi vacshop!
Yes, Enfold 2.5.4 (the latest version of the theme) is compatible with WC2.1.3.
Cheers!
PeterHey!
See https://kriesi.at/support/topic/using-conditional-menus-with-custom-defined-user-roles/ – it shows you how to define new conditional checks.
Cheers!
PeterHey!
Glad you found a fix :)
Cheers!
PeterMarch 3, 2014 at 11:24 am in reply to: Blog Post disappeared + Masonry Gallery order of appearance #231478This reply has been marked as private.Hi Laure!
Please try to replace:
$body = file_get_contents($url, NULL, stream_context_create($options), 0, 1);
with:
$body = @file_get_contents($url, NULL, stream_context_create($options), 0, 1);
– does it fix the issue? If yes I’ll add the fix to the next theme update.
Cheers!
PeterHey!
You can create multiple portfolios. Just insert the “portfolio element” into a page and select the categories you want to display. You can add several portfolio elements to the same page or to different pages and select different categories for each portfolio element.
Cheers!
PeterHey!
1) Füge diesen Code in das Quick CSS Feld ein:
#top .header_bg { opacity: 1; }
2) Ich konnte kein “Rufen Sie uns an” finden, aber wenn der Balken ganz oben bei “Beratung unter Telefon” gemeint ist könnt ihr die Farbe mit:
#header_meta { background: #333; }
ändern.
3) Ich empfehle immer nur einen
tag zu setzen. Dann könnt ihr mit:#top .sidebar .textwidget{ line-height: 1em; }
die Zeilenhöhe bestimmen. Ihr könnt auch Komma-Werte setzen (zB 2.5em).
Regards,
PeterHi!
Great. The link is not broken but you just need to open it in another window/tab :)
Cheers!
PeterHi!
1) The sort/filter feature is based on js/jquery and does not use php or ajax. You can modify the code in enfold/js/avia.js – search for:
$.fn.avia_iso_sort = function(options)
If you just want to modify the query which displays the grid items you can modify the operator in wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/portfolio.php – search for:
'tax_query' => array( array( 'taxonomy' => $params['taxonomy'], 'field' => 'id', 'terms' => $terms, 'operator' => 'IN')));
and change the operator parameter
'operator' => 'IN'
to
'operator' => 'AND'
You can also use a filter function in your child theme:
add_filter('avia_post_grid_query', 'avf_custom_post_grid_query'); function avf_custom_post_grid_query ( $query ) { if(!empty($query['tax_query']['operator'])) $query['tax_query']['operator'] = "AND"; return $query; }
2) No, it’s currently not possible to pre-select a category by passing a parameter. However I’m sure you can implement it with some hours of work (maybe 2-3 hours including testing).
Cheers!
PeterHey!
Please try to clear the browser cache. The color is the same for me now: http://www.screenr.com/MpBN
Regards,
PeterHey george!
I reported the bug to Kriesi. For a temporary fix I recommend to use the “table shortcode” instead (you can switch to the default editor to generate the table with the “Magic wand” shortcode generator).
Best regards,
PeterHi chrisbailey!
I didn’t test it but you can try to replace this line in wp-content/themes/enfold/js/shortcodes.js:
first_slide.css({visibility:'visible', opacity:0}).avia_animate({opacity:1}, function() { var current = $(this).addClass('active-slide'); });
with
first_slide.css({visibility:'visible', opacity:1}); var current = $(this).addClass('active-slide');
Best regards,
PeterHi!
Please try to insert this code into the quick css field:
@media only screen and (max-width: 767px){ .responsive div .avia-data-table table, .responsive div .avia-data-table tbody, .responsive div .avia-data-table tr, .responsive div .avia-data-table td, .responsive div .avia-data-table th { display: inline-grid; } }
Cheers!
PeterHey!
Afaik you can’t set a fallback picture at the moment. I’ll tag this thread for Kriesi – maybe we can add such a feature to the next theme version.
Best regards,
PeterHey!
You can try to increase the thumbnail quality with: http://wordpress.org/plugins/simplejpegquality/ – do not forget to regenerate the thumbnails with http://wordpress.org/plugins/regenerate-thumbnails/
Regards,
PeterMarch 3, 2014 at 9:48 am in reply to: Image size in Portfolio lightbox not consistent depending on viewport size #231449Hey babayard!
Did you fix the issue? I can’t reproduce it on my full hd screen and all thumbnails have the same size: http://www.clipular.com/c/6265833978331136.png?k=RDXXGoIVcgjXngctTb8HWKlfSlQ
You can increase the image size by changing the “Gallery Columns” option (i.e. set it to 2) and don’t forget to set another “thumbnail” size on the “Gallery” element option screen because at the moment you’re using 180x180px images which will be blurry if you stretch them to 50% of the screen size.
Cheers!
PeterHi!
It seems like wordpress adds a width styling to the surrounding caption div which is not the case if you insert a simple image link without a caption. Unfortunately we can’t “fix” this inconsistent behavior with the theme code. If you want to limit the width switch to the html mode (then you can add the html code directly) and replace:
<a href="http://buchtalente.de/treditionwp/wp-content/uploads/2014/02/focusonline-e1393335459678.png">
with
<a href="http://buchtalente.de/treditionwp/wp-content/uploads/2014/02/focusonline-e1393335459678.png" style="width: 115px">
Cheers!
PeterMarch 3, 2014 at 9:28 am in reply to: Enfold | Header Transparency with Full Page Slider (question further) #231443Hey webfordj!
Tbh I’m not familiar with Kriesi’s calculation code for the header offset and my solution might not work but you can try to replace this code in wp-content/themes/enfold/js/shortcodes.js
subtract: '#wpadminbar, #header, #main>.title_container'
with
subtract: '#wpadminbar'
and the slider should cover the entire screen.
Regards,
PeterHi!
Maybe you can install the Codestyling plugin on a local test server (i.e. localhost) and translate the theme there? After you translated the text strings click on the “create mo file” to generate the mo file. Then go to the wp-content/themes/enfold/lang folder and upload the mo/po files from the folder to your server. The directory path to the language folder should be the same like on your local hard drive.
Cheers!
PeterMarch 3, 2014 at 9:12 am in reply to: header menu issue (elements are not displaying inline) #231437Hi!
Great, glad it works now.
Cheers!
PeterHi!
I fixed it. I had to change a line in config.php and we’ll add this patch to the next theme update.
Regards,
PeterHi!
Afaik the POST TYPE ORDER plugin hooks into the query and manipulates it. Maybe try to set the “Autosort” option (Settings > Post Type Order) to “ON/Custom” to fix the issue. If this doesn’t help please contact the plugin author. The query of the masonry gallery can be found in wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/masonry_entries.php
Regards,
PeterHey!
Yes, this might solve the issue. However if you can reproduce the issue with the default theme (I can reproduce it on my test server with TwentyThirteen) it’s a plugin bug and you should report it to the plugin developers.
Best regards,
PeterHey!
I’m not sure if Enfold supports the “customize” screen. It’s not necessary anyway because you can set the menus on the Appearance > Menus option screen. Just click on the “Manage Locations” and then you can select which theme location should display your menu(s).
Regards,
PeterMarch 1, 2014 at 3:35 pm in reply to: unable to backup via backupbuddy after the last update (enfold and woocommerce) #231075Hey!
Please contact the plugin developers and ask them for help.
Cheers!
PeterHi!
Try to add this code to your child theme:
add_action('init','avia_child_theme_setup'); function avia_child_theme_setup(){ add_theme_support( 'post-formats', array( 'audio') ); }
Regards,
PeterHey aarynm!
Yes, personally I recommend to restore everything. Then use: WP MigrateDB or WP MigrateDB PRO to export the database and to change the url. Afterwards delete the old database and import the sql file with the new domain/url. The migrate plugin will take care of serialized data too.
Cheers!
PeterMarch 1, 2014 at 12:51 pm in reply to: header menu issue (elements are not displaying inline) #231055Hi!
@motylanogha – please deactivate the “authentication” window. I don’t understand the content and can’t pass this check.Cheers!
Peter -
AuthorPosts