Forum Replies Created
-
AuthorPosts
-
September 15, 2018 at 12:19 pm in reply to: How to Increase Font Size of Blog Post Page Numbers? #1010095
Hi,
You can change the font size of these circles with this code
#top #wrap_all .pagination .current, #top .pagination a, #top #wrap_all .fullsize .template-blog .pagination a { font-size: 15px; }
Best regards,
PeterHey helban,
Please try to add this code to the quick css field and adjust the width value if necessary:
#top #wrap_all .avia-post-nav:hover .entry-info-wrap { width: 20px; }
Best regards,
PeterHey AWZ,
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 11:47 am in reply to: Extra space below footer when using page as footer #1010086Hi,
I fixed it.1) I added a custom id to the footer section (i.e. footer_section – screenshot: http://www.clipular.com/c/6030402066841600.png?k=TWI-eNSNopwM1gnnw1q-7ZEcNI4 )
2) Then I added this css code to the quick css field:
#footer_section + div { display: none; }
Best regards,
PeterHi,
Please create one (or more) portfolio categories (see link in private data field). You also need to create at least one portfolio item, otherwise the grid can’t show any entries.
Best regards,
PeterHey tijshensen,
Please add this code to the child theme functions.php
add_filter( 'avf_google_heading_font', 'avia_add_content_font'); add_filter( 'avf_google_content_font', 'avia_add_content_font'); function avia_add_content_font($fonts) { $fonts['Roboto'] = 'Roboto:100,400,700'; return $fonts; }
Best regards,
PeterSeptember 15, 2018 at 11:32 am in reply to: Google Map API issue (works on one site but not another) #1010080Hi,
I fixed it. You use the events calendar plugin which also loads the google map api. You need to set the api key for for the events calendar plugin too, otherwise it “blocks” the Enfold api. I added the url to the events calendar api settings page to the private content field.
Best regards,
PeterSeptember 15, 2018 at 11:26 am in reply to: Removing date from the blog-pages/category-pages #1010077Hi!
Please try this css code:
#top .avia-content-slider .slide-meta time { display: none; }
If you just want to hie the time on the front page/homepage use:
#top.home .avia-content-slider .slide-meta time { display: none; }
Best regards,
PeterSeptember 15, 2018 at 10:41 am in reply to: Possible to change Portfolio filtering to drop-down menus on mobile? #1010070Hi,
It’s possible but it would require some work and a rewrite of our sorting function (on the php level and maybe on the javascript level too). This task is beyond the scope of our support forum however you can hire a developer to do customize the code for you.Best regards,
PeterHi,
This article will help you: https://kriesi.at/documentation/enfold/google-map/#how-to-register-a-google-maps-api-key
Best regards,
PeterHi,
I deactivated the javascript compression option on your website (Enfold > Theme Options > Performance) but the error is still there. However jquery is loaded in the head section for sure, also all Enfold javascripts (which also use the default wordpress jquery version) work just fine. I’m pretty sure it’s not a jquery issue. Also the console outputs following error:
wp-google-maps.min.js?ver=7.10.33:1 Uncaught ReferenceError: google is not defined at wp-google-maps.min.js?ver=7.10.33:1
If it’s a jquery issue the error message would be “jquery not defined” or so.
Best regards,
PeterSeptember 15, 2018 at 10:21 am in reply to: Password-Protect Page Not Working in Google Chrome #1010066Hi,
Based on the screenshots and the fact that the unlocked website shows up after some minutes I’m pretty sure it’s not a cookie issue. However it indicates that the password page is cached for a few minutes by the Chrome browser and thus the browser does not show the “updated/unlocked” content.
We’ve tried installing the latest Enfold theme update, but it hasn’t been successful. My supervisor has installed it twice and I got an error message “Download failed. A vaild URL was not provided” when I tried installing it again. Has the update gone away?
No but 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 10:14 am in reply to: Blog Post Grid Layout – Title, Author, Date display #1010064Hey ChristineGerman,
Please replace this line of your code:
$meta .= "<div class='slide-meta-author'>" . get_the_author() . "</div> <div class='slide-meta-del'>/</div>";
with
$post_author_id = get_post_field( 'post_author', $the_id ); $author_name = get_the_author_meta( 'user_nicename' , $post_author_id ); $meta .= "<div class='slide-meta-author'>$author_name</div> <div class='slide-meta-del'>/</div>";
Best regards,
PeterHi,
The unzip function must be able to access the font folder and a temp directory on your server. The url to the font files doesn’t help in this case but you need the file path to the font files. The file path looks like /www/home/wordpress/wp-content/uploads/temp/font.zip (this is just an example), the url to the font files would then be https://mywebsite.com/wp-content/uploads/temp/font.zip.
That said we use the get_attached_file() function to fetch the path (see line 51 in enfold\config-templatebuilder\avia-template-builder\php\font-manager.class.php):
realpath(get_attached_file($attachment['id']));
If this code does not return the right path our unzip function will fail.
I deactivated the s3 plugin, delete your fontello font (because the file path was probably wrong) and uploaded another fontello font and it worked perfectly fine (it’s still installed if you want to test it).
I’d recommend to simply deactivate the s3 plugin before you upload your custom fonts. Afterwards you can activate it again and test if the fonts still work.
Best regards,
PeterHi,
I fixed it by adding width: 100%; to the code. I also updated the code above.Best regards,
PeterSeptember 15, 2018 at 9:28 am in reply to: Woocommerce – Short Code [woocommerce_my_account] not working properly #1010044Hi,
Do you use the [woocommerce_my_account] shortcode with the advanced layout builder? If yes the shortcode won’t work because the my account template of WooCommerce is not compatible with the template builder. Please switch to the default editor and use the shortcode there. If you’re already using the shortcode inside the default editor please create me an admin account and I’ll look into it.
Best regards,
PeterHi,
I added this code to the child theme functions.php to fix the issue:
add_action('wp_footer', 'ava_auto_resize_dude'); function ava_auto_resize_dude(){ ?> <script> (function($){ var int = window.setInterval(function(){ $(window).trigger('resize'); $(window).trigger('av-content-el-height-changed'); }, 1000); })(jQuery); </script> <?php }
Please note you need to wait some seconds (2-3 seconds) until you click on an item. Otherwise the ajax portfolio data is not initialized and this can break the portfolio. You can activate the preloader effect (Enfold > Theme Options) if you want to make sure that your users can’t click on an item before the page content is loaded.
Best regards,
PeterSeptember 15, 2018 at 9:18 am in reply to: Possible conflict between Product slider and Revision function #1010035Hi,
Can you please post the password – I just see “Sorry, I’ve already forgotten that secret.” when I visit the page. You can use the private content field for the login credentials.Best regards,
PeterHi,
Glad we could help you :)
Best regards,
PeterSeptember 13, 2018 at 4:39 pm in reply to: Easy Digital Downloads Shortcode does not work properly. #1009495Hi,
I created a test account page (see link in private content). It uses the default wordpress editor and the shortcode works just fine there. The advanced layout builder is not compatible with the shortcode – probably because edd loads its own template (with template_redirect) and this is not possible if the adavanced layout builder is used (because it also requires a special template and hooks into template_redirect). So basically I’d recommend to use a standard wordpress page as a starting point for the account page, not an advanced layout builder page.
Best regards,
PeterSeptember 13, 2018 at 4:13 pm in reply to: Password-Protect Page Not Working in Google Chrome #1009468Hi,
The issue is probably caused by cookies which are not stored/accepted by Chrome. WordPress uses cookies to save the password and to unlock the content. Maybe a browser extension breaks or blocks this cookie. Did you try to deactivate all Chrome browser extensions?
If yes this post: https://en.forums.wordpress.com/topic/cannot-access-password-protected-pages-using-chrome/ suggests to clear the “browser data, including browsing history, download history, cookies and other site and plug-in data, saved passwords and Auto-fill form data via Tools/Clear browsing data.”
Best regards,
PeterHi,
Can you post a link to your website? I’ll check if Enfolds adds a key or not.
Best regards,
PeterSeptember 13, 2018 at 4:04 pm in reply to: Easy Digital Downloads Shortcode does not work properly. #1009463Hey!
I can’t see the “View Licenses” link – where can I find it?
Cheers!
PeterHey marta,
Please try to use ftp to install the theme: https://kriesi.at/documentation/enfold/how-to-install-enfold-theme/#ftp-install
You can register for the support forum here: https://kriesi.at/support/register/
and then ask your questions here: https://kriesi.at/support/enfold/Best regards,
PeterSeptember 13, 2018 at 3:36 pm in reply to: Private entries not showing in Tag-Cloud when logged in. #1009447Hi!
An user here: https://stackoverflow.com/questions/6269137/wordpress-force-wp-tag-cloud-to-display-empty-categories suggested the args maybe support the “hide_empty” => false” parameter (which I haven’t tested). If this is true you can use this code to include the tags of private posts in the tag cloud – you can add it to the child theme functions.php://Register tag cloud filter callback add_filter('widget_tag_cloud_args', 'avia_tag_widget_hide_empty'); function avia_tag_widget_hide_empty($args){ //Check if taxonomy option inside widget is set to tags if(isset($args['taxonomy']) && $args['taxonomy'] == 'post_tag'){ $args['hide_empty'] = false; } return $args; }
I’ve not tested it and I’m not sure if it will work…
Best regards,
PeterSeptember 13, 2018 at 3:26 pm in reply to: Private Posts not shown in "Masonry" or "Magazine" #1009443Hi,
I answered there.Best regards,
PeterSeptember 13, 2018 at 3:26 pm in reply to: Private entries not showing in Tag-Cloud when logged in. #1009442Hey jobalzer!
I’m sorry but afaik there’s no solution. The default wordpress tag widget simply doesn’t display private posts (see https://en.forums.wordpress.com/topic/why-no-tags-from-private-posts-in-tag-cloud-when-i-logged-in/ and https://www.quora.com/Is-there-a-way-of-displaying-private-pages-in-the-wordpress-tag-cloud-when-users-are-logged-in ). This is not a limitation of Enfold but a wordpress core limitation. Also the wp_tag_cloud() function ( https://codex.wordpress.org/Function_Reference/wp_tag_cloud ) does not offer an option/parameter to include/exclude private posts.
There’re three possible solutions:
1) Search for a third party plugin here: https://wordpress.org/plugins/search/tag+cloud/ which supports tags of private posts
2) Create a “tag widget” manually and hardcode all tag links.
3) Hire someone to create a tag widget which supports private posts for you.Best regards,
PeterSeptember 13, 2018 at 3:13 pm in reply to: Private Posts not shown in "Masonry" or "Magazine" #1009435Hi,
I’ll leave it open. Please note the tag cloud widget is a standard wordpress widget and it’s probably no theme issue (if you search for “tag cloud private posts” you’ll find useful information).
Best regards,
PeterHey fairusd,
Enfold does not support such a countdown out of the box. However you can try a plugin like https://wordpress.org/plugins/countdown-timer-ultimate/ to add it to your website (I’ve not tested it).
Best regards,
PeterSeptember 13, 2018 at 3:02 pm in reply to: Can not update to ENFOLD 4.4.1 ( on all our websites ) #1009423Hi,
Great, glad it’s fixed now :)
Best regards,
Peter -
AuthorPosts