Forum Replies Created
-
AuthorPosts
-
Hi,
@peta_moonstone – please create me an admin account and I’ll modify the file for you.Wondering if it is worth waiting for the update ;)
You need to modify the file even if you just want to install the next update via wordpress. The only other solution would be update the theme via ftp. We’ve no ETA for the next update yet but I guess we’ll release it this or next month.
Best regards,
PeterHi,
You can use this code to move the breadcrumb to the left:
#top #wrap_all .title_container .breadcrumb { right: auto; left: 50px; }
If you want to move the title (which is displayed on the left by default) to the right use this code
#top #wrap_all .title_container .main-title { text-align: right; }
Best regards,
PeterSeptember 17, 2018 at 8:30 am in reply to: I want to make a review tab in every single product on woocomerce. #1010613Hey ngavy,
I haven’t tested it but this post: https://teamtreehouse.com/community/woocommerce-reviews-move-out-of-tabs-and-to-bottom-of-the-product-page suggests following code to move the reviews to the product description:
add_filter( 'woocommerce_product_tabs', 'avia_woo_remove_product_tabs', 98 ); function avia_woo_remove_product_tabs( $tabs ) { unset( $tabs['reviews'] ); // Removes the reviews tab return $tabs; } add_action( 'woocommerce_after_single_product_summary', 'comments_template', 50 );
Best regards,
PeterHey Jak73,
Yes you can deactivate Google font completely. You can select “websafe” fonts (Arial, Helvetica, Times New Roman, etc.) or you can upload Google fonts to your server. The fonts will then be loaded from your server and no data will be submitted to Google (= GDPR compliant solution because no data is submitted to third parties).
Best regards,
PeterSeptember 16, 2018 at 9:03 pm in reply to: filter function for tags on blog list page (similar to portfolio) + other issues #1010513Hey elephunk21,
1. I would like to create a filter with tags for my blog list page (a filter that works similar like in the portfolio). Please advise how to do so.
You could use the masonry grid element or the magazine element if you want to display a filter similar to the portfolio grid filter. The standard blog element does not support such a filter and you would need to hire a developer to implement this feature for you.
2) Please add this code to the child theme functions.php to show shortcodes inside the post grid excerpts:
function avf_post_slider_entry_excerpt_custom($excerpt, $prepare_excerpt, $permalink, $entry ) { $excerpt = do_shortcode( $excerpt ); return $excerpt; } add_filter('avf_post_slider_entry_excerpt', 'avf_post_slider_entry_excerpt_custom', 10, 4);
3) WordPress already supports a data field to store the order number of a post and you don’t need to create a custom field. The orderby parameter is called menu_order ( see https://codex.wordpress.org/Class_Reference/WP_Query#Order_.26_Orderby_Parameters ) and your code would then look like:
function avia_modify_post_grid_query_desc( $query ) { $query['orderby'] = 'menu_order'; $query['order'] = 'DESC'; return $query; }
You can then add this code to your child theme to show the menu order option field on the post editor page:
add_action( 'admin_init', 'avia_add_posts_order' ); function avia_add_posts_order() { add_post_type_support( 'post', 'page-attributes' ); }
or you can install a plugin like https://wordpress.org/plugins/post-types-order/ to re-order your posts via drag’n’drop. I’m using this plugin on all of my websites because the menu order option field is not user friendly (you need to add a value to each post to determine the order).
4. for the sidebar navigation, do you have a nicer looking sidebar menu. something with a dropdown?
No the theme does not come with a special sidebar menu widget. However a search: https://wordpress.org/plugins/search/sidebar+menu/ returns many third party plugins which may help you.Best regards,
PeterSeptember 16, 2018 at 8:30 pm in reply to: Ajax Portfolio not showing on translated website #1010506Hi,
I’m not sure why Polylang handles these portfolios in a different way. The query code should be the same for all portfolios but maybe Polylang has problems with the homepage in combination with the portfolio query (some internal redirects, etc.).
Personally I’d recommend to simply translate these entries, as far as I can see you’ve only 12 entries at the moment. You can also use the “Synchronize” feature to “copy” the content from your portfolio entries to the other language – this feature should help you to create Chinese entries for now and then you can translate them step by step if you’ve enough spare time. I added a link to the polylang settings page to the private area.
Best regards,
PeterSeptember 16, 2018 at 8:19 pm in reply to: HTTP 500 error after update, have tried your recommendations, still not working #1010502Hi mofix!
If you use ftp to update the theme please make sure to replace the entire theme folder. If you just overwrite the existing files you’ll get a blank page (500 error). Connect to ftp, go to wp-content/themes and rename the theme folder “enfold” to “enfold_bak”. Then download the new files from themeforest, unzip the theme files and upload them to wp-content/themes/enfold. Make sure the style.css file is located in wp-content/themes/enfold (file path wp-content/themes/enfold/style.css). If the theme works, you can simply delete the enfold_bak folder. If not, delete the enfold folder and rename enfold_bak to enfold.
Best regards,
PeterSeptember 16, 2018 at 6:57 pm in reply to: I found Security Vulnerability in your web application #1010487Hey sonu,
Thank you for reaching us. You can report the vulnerability here – only moderators and programmers can read your message. We’ll review your report asap and fix the vulnerability if necessary (maybe we already fixed it in the developer build).
will i get bounty bounty reward in PayPal or Bitcoin for Security bug ?
I can’t promise you a reward because we’ve no bounty program. However if your report was helpful and it’s a major/serious vulnerability we’ll forward your request for a reward to Kriesi. It’s then up to him (as the business owner) to decide if he wants to pay a reward or not.
Best regards,
PeterHi,
I just tested your website and the map displays without watermarks on my end. The watermark can also be triggered if a self-imposed daily limit has been exceeded. Please go to this page: https://console.developers.google.com/google/maps-apis/apis/maps-backend.googleapis.com/quotas and check your quotas. The contingent per day must be set to a reasonable value (i.e. 500).
Best regards,
PeterSeptember 15, 2018 at 10:31 pm in reply to: CSS conflict with FormidablePRO (forms) in the calendar element #1010266Hey!
Great, glad it works now :)
Cheers!
PeterSeptember 15, 2018 at 7:22 pm in reply to: Get variable of the url and attach it on subject of content form mail #1010218Hi,
Please try this code:
add_filter('avf_sc_contact_form_elements', 'avf_shortcode_sc_contact_form_elements', 10, 4); function avf_shortcode_sc_contact_form_elements($form_fields, $atts) { $data = ''; $googlevariable = 'myvariable'; if(!empty($_REQUEST[$googlevariable])) { $data = htmlspecialchars($_REQUEST[$googlevariable]); } if($data) { $form_fields = array($googlevariable => array('label' => '', 'type' => 'text', 'value' => $data )) + $form_fields; } return $form_fields; }
Best regards,
PeterSeptember 15, 2018 at 7:08 pm in reply to: Private entries not showing in Tag-Cloud when logged in. #1010216Hi,
No but you can simply deselect the “Show tag counts” checkbox (widget settings) to hide the count.
Best regards,
PeterSeptember 15, 2018 at 3:01 pm in reply to: Password-Protect Page Not Working in Google Chrome #1010131Hi,
We’ve no ETA for the next update yet – I’d recommend to patch the file manually.
Do you think having the update helps resolve the issue?
I’m not aware of any changes or fixes regarding this issue but it’s worth a try.
You could also try to switch to a third party plugin like https://wordpress.org/plugins/content-protector/ which might work better for you. I’ve not tested it with Enfold but I’m pretty sure it will at least work with the “Default Editor”.
Best regards,
PeterHi,
I’m not sure if it’s a plugin failure but it’s not a jquery issue because jquery is loaded before the google maps js code.
Best regards,
DudeHi,
Great, glad it works now :)
Best regards,
PeterHey!
We can’t edit the wp-config.php file for you – only a person with ftp access can do it.
Regards,
PeterHi,
I checked the website again – jquery is loaded at the top on line 104. It’s not combined with other scripts.You can also try another plugin like: https://wordpress.org/plugins/leaflet-map/ – I use it on my websites and it works really well.
Best regards,
PeterHi,
Your php memory limit is set to 32M which is not enough for Enfold (it uses more resources than i.e. the default wordpress theme). Please increase the memory limit to 128M (or more i.e. 256M). This article will show you how to increase the memory limit: https://docs.woocommerce.com/document/increasing-the-wordpress-memory-limit/
Best regards,
PeterHi,
Soweit ich das sehen kann verwendet ihr eine Sektion (Color Section) um den Inhalt einzubetten. Da eine Color Section (genauso wie die Slideshow mit voller Breite) die gesamte Breite benötigt, kann daneben keine Sidebar angezeigt werden.
LG,
PeterHey Jacob,
Please deactivate all third party plugins (except Woocommerce and check if this solves the issue). If yes one (or more) plugins break the product page. If not please create us an admin account and we’ll look into it.
Best regards,
PeterSeptember 15, 2018 at 1:28 pm in reply to: CSS conflict with FormidablePRO (forms) in the calendar element #1010111Hi,
Please try this css code
#top #wrap_all .ui-datepicker-title select{ display: inline; width: 85px !important; margin-top:5px; }
Best regards,
PeterHi,
I checked the php version and the server is not running php 7 but php 5.3 which is no supported (see private content). Please update to php 7.
Best regards,
PeterHi!
I added this code to the quick css field:
#top #wrap_all .avia-image-container:hover img { -webkit-filter: grayscale(0%); -moz-filter: grayscale(0%); filter: grayscale(0%); transition: all 0.5s ease; } #top #wrap_all .avia-image-container img{ -webkit-filter: grayscale(100%); -moz-filter: grayscale(100%); filter: grayscale(100%); }
and now it should work as you described above :)
Regards,
PeterHi Glory Isunga!
We can’t create or style the website for you but you could use our theme Enfold ( https://themeforest.net/item/enfold-responsive-multipurpose-theme/4519990 ) as a starting point.
Regards,
PeterHey Steph!
Do you mean the preloader? You can deactivate it in the theme options panel (Enfold > Theme Options and search for the “Page Preloading” checkbox)
Regards,
PeterHi,
This is a known bug in the Envato update api. We found a fix/workaround for it on our end and we’ll include it with the next update. You can add this fix manually – use the theme editor (Appearance > Editor) and edit Enfold. Go to enfold/framework/php/auto-updates/ and open the class-pixelentity-theme-update.php file. Clear the entire file (remove the code) and copy the entire code from here https://pastebin.com/raw/epetJ1SG into the blank file. Afterwards save the file and the update should work.
You can also use ftp to update the file. Save the code from here: https://pastebin.com/raw/epetJ1SG to a file called class-pixelentity-theme-update.php. Then connect to your server via ftp, go to the directory wp-content/enfold/framework/php/auto-updates/ and overwrite the class-pixelentity-theme-update.php with the updated file you created before.
Best regards,
PeterSeptember 15, 2018 at 12:39 pm in reply to: portfolio item showing error in Masonry with WPML #1010100Hey decode,
Please create us an admin account. The temporary login link didn’t work for me.
Best regards,
PeterSeptember 15, 2018 at 12:35 pm in reply to: Can not update to ENFOLD 4.4.1 ( on all our websites ) #1010099Hi,
I modified the file for you – you should now be able to update the theme :)
Best regards,
PeterHi,
Erstelle mir bitte einen Admin Account und ich sehe mir die Sache näher an.
LG,
PeterHi,
Enfold uses the standard wordpress search for the search query. If you want to enhance the search algorithm you can use a plugin like Relevanssi. Out of the box it works with the standard search form but not with the ajax preview (search results which fade in below the search box). However this post: https://kriesi.at/support/topic/is-there-a-searchbar-working-togehter-with-woocommerce/#post-990568 will help you to use Relevanssi (or another search plugin) with the Enfold ajax preview search results too.
Best regards,
Peter -
AuthorPosts