Forum Replies Created
-
AuthorPosts
-
Hi,
Great, glad I could help you. I asked our developers to look into it and to include this feature with the next theme update.Best regards,
PeterHi,
Please try to add this code to the child theme functions.php to fix the issue:
add_filter('wpseo_twitter_image', 'avia_set_yoast_og_image', 10, 1); add_filter('wpseo_opengraph_image', 'avia_set_yoast_og_image', 10, 1); function avia_set_yoast_og_image($url) { if(empty($url) && has_post_thumbnail()) { return get_the_post_thumbnail_url(); } return $url; }
Another user reported this as a bug to Yoast (see https://kriesi.at/support/topic/yoast-seo-premium-missing-facebook-preview-image/#post-1007741 ) and hopefully they’ll fix it soon.
Best regards,
PeterOctober 1, 2018 at 7:57 am in reply to: On Blog Posts Page, only 1st post has Read More but not content #1016451Hi!
I fixed the issue – I changed the code in the child theme functions.php to
function change_blog_archive_style() { global $avia_config; if( !empty($avia_config['conditionals']['is_builder']) )$avia_config['blog_content'] = "excerpt_read_more"; } add_action('get_header', 'change_blog_archive_style');
Cheers!
PeterHi,
I checked your website with the query monitor plugin and compared Enfold to the default TwentySeventeen theme – the difference was 0.5s when it came to the loading time. The major part of the loading time is caused by plugins and/or the slow processing of php code which is often a problem with shared hosting. In addition the website size is more than 3,7mb which equals the size of a mp3 audio file (see https://gtmetrix.com/reports/hikestgeorge.com/PVujietH ).
I’d recommend to reduce the number of plugins (if possible) and to reduce the website size (smaller images, reduce the amount of images).
Best regards,
PeterSeptember 30, 2018 at 9:21 pm in reply to: Lighbox issue – pictures shown which do not belong to post #1016340Hi,
Thank you or reporting this bug. I fixed it on your staging server by replacing line 130 in enfold/js/avia-snippet-lightbox.js
groups : ['.avia-slideshow', '.avia-gallery', '.av-instagram-pics', '.portfolio-preview-image', '.portfolio-preview-content', '.isotope', '.post-entry', '.sidebar', '#main', '.main_menu'],
with
groups : ['.avia-slideshow', '.avia-gallery', '.woocommerce-product-gallery', '.av-instagram-pics', '.portfolio-preview-image', '.portfolio-preview-content', '.isotope', '.post-entry', '.sidebar', '#main', '.main_menu'],
I’ll ask our developers to include this fix with the next update.
Best regards,
PeterHey Milan,
Please try to add this code to the child theme functions.php:
function avia_custom_js_footer_code(){ ?> <script type="text/javascript"> jQuery(document).ready(function(){ jQuery(".avia-menu a").click(function(){ location.reload(true); }); }); </script> <?php } add_action('wp_footer', 'avia_custom_js_footer_code');
Best regards,
PeterHey,
This is a common issue with some shared hoster, i.e. with GoDaddy ( https://www.godaddy.com/community/Managing-WordPress/Wordpress-theme-upload-error-quot-The-link-you-followed-has/td-p/101292 ). The solution is to increase some limits (PHP settings) to following values:
max_execution_time 180 memory_limit 512M (or your highest available) post_max_size 32M upload_max_filesize 64M
If you don’t know how to increase the limits please talk to the host/server administrator and they’ll help you.
Best regards,
PeterHi,
It uses a special slider script which is only bundled with Replete. I’d recommend to use a slider plugin like LayerSlider or Revolution Slider to embed a similar slider into Enfold.
Best regards,
PeterHi,
Our theme already loads the default wordpress jquery script (which is bundled with the wordpress core files). Please try to remove following line from your code
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
If that doesn’t work please post your code with a service like https://pastebin.com because the private field converts your code into text and makes it invalid.
Best regards,
PeterHi,
Normally you can find all inactive widgets on the bottom of the widgets settings page (Appearance > Widgets, scroll to the bottom where the “Inactive Widgets – Drag widgets here to remove them from the sidebar but keep their settings.” section is located.
Best regards,
PeterHey Stegemueller,
I checked your code on stegemueller.dk and the font size of the blockquotes is set to 10pt. You can use this css code on letsupport.dk to change the font size to 10pt (i.e. add it to the quick css field):
#top #wrap_all blockquote, #top #wrap_all blockquote p { font-size: 10pt; }
Best regards,
PeterHey envisageiam,
You can add this code to the quick css field to show the images on mobile devices too:
@media only screen and (max-width: 767px){ .responsive #top #wrap_all .template-blog .blog-meta, .responsive #top #wrap_all .post_author_timeline, .responsive #top #wrap_all #main .sidebar { display: block; } }
If you want to show the images above each post please try another blog style (i.e. “Single Author, big preview Pic (no author picture is displayed, feature image is big)”) because your current layout just supports small thumbnails on the left side.
Best regards,
PeterHey envisageiam,
Please add this code to the quick css field and change the color values:
#top #wrap_all .main_color input[type='submit']:hover { background-color: #000000; color: #ffffff; border-color: #5d8ab9; } #top #wrap_all .main_color input[type='submit'] { background-color: #000000; color: #ffffff; border-color: #5d8ab9; }
Best regards,
PeterSeptember 30, 2018 at 8:28 pm in reply to: How do i change the font colour of my woocommerce price #1016321Hi,
Sure, try this code:
#top #wrap_all p.price .woocommerce-Price-amount.amount{ font-size 15px; }
and adjust the px value.
Best regards,
PeterHi,
Great, glad I could help you :)
Best regards,
PeterHi,
Dann versuche über https://help.market.envato.com/ einzusteigen, klicke auf “Buying and Item Support” links unten und dann auf “Can I Get A Refund?”.
LG,
PeterSeptember 30, 2018 at 8:17 pm in reply to: Masonry gallery:showing images twice and in random order with "load more" button #1016315Hi,
I’d recommend to talk to the plugin author – maybe you can deactivate the plugin for certain queries (i.e. the masonry query) only. You can use the avia_masonry_entries_query filter to change the masonry posts query – i.e. this sample code would change the posts order (you can add it to the child theme functions.php):
add_filter('avia_masonry_entries_query', 'avia_masonry_entries_query_mod', 10, 2); function avia_masonry_entries_query_mod($query, $params) { $query['orderby'] = 'date'; $query['order'] = 'ASC'; return $query; }
Best regards,
PeterHi!
Great, glad you found a solution :)Best regards,
PeterHi!
I’ll close this thread now because the initial issue is solved. We’ll continue in the other thread.Best regards,
PeterHi,
You maybe need to regenerate the performance cache. Go to Enfold > Theme Options > Performance and disable the javascript merging/compressing. Save the settings. Then activate the setting and hit the save button again.
Best regards,
PeterSeptember 30, 2018 at 2:25 pm in reply to: Can I reuse enfold after deleting from one site. #1016272Hey Yasir,
Yes you can reuse the theme on another domain. Just make sure the theme is not simultaneously used on both domains with just one license.
Best regards,
PeterHey Kriszta,
I can’t recommend a plugin but personally I’ve used this plugin: https://www.mapsmarker.com/ and it worked for me. I haven’t tested it extensively but at the moment I’m not aware of incompatibility issues.
Best regards,
PeterHey Elena,
Alle Rückerstattungen werden über Envato abgewickelt. Diese Seite: https://help.market.envato.com/hc/en-us/articles/202821460-Can-I-Get-A-Refund- enthält alle Informationen ob und wie eine Rückerstattung beantragt werden kann.LG,
PeterSeptember 30, 2018 at 2:05 pm in reply to: config-templatebuilder/avia-shortcodes/av-helper-masonry.php on line 362 Error #1016264Hi,
Please try to replace line 213 in enfold\config-templatebuilder\avia-shortcodes\av-helper-masonry.php
$hide = count($display_terms) <= 1 ? "hidden" : "";
with
$hide = ( !is_array($display_terms) || count($display_terms) <= 1 ) ? "hidden" : "";
– this should fix the error. I’ll ask the developers to include the fix with the next update.
Best regards,
PeterHi,
Please talk to bluehost and ask them to switch the php version to php 7 for you. The server is running version 5.2 at the moment ( link to php info in private content ) and on the php config website of bluehost I can’t change the version. I just see the error message:
If you have custom handlers specified in ~/public_html/.htaccess, changing these settings can overwrite them. If you are not sure, make a backup of ~/public_html/.htaccess before changing settings.
Cannot open /XXX/public_html/.htaccess for writing. Please contact support.Best regards,
PeterHi hikestgeorge!
Please check if the user you created has admin rights. I tried to log in, the log in credentials worked but then I just got the error message “Sorry, you are not allowed to access this page.”
Best regards,
PeterHi,
I tried to connect to your ftp server but I just get timeout errors. Do you have web ftp?
Best regards,
PeterHi,
Who claims I’m not reporting it back to our developers? I already wrote a fix and ask the developers to include it with the next update. The reason why we’re delaying the upcoming update at the moment is the new envato update api which must be included with the next update (otherwise this and the next update wouldn’t work with the automatic update feature and we want to avoid this situation).Best regards,
PeterSeptember 30, 2018 at 1:13 pm in reply to: Enfold (shop demo) privacy & imprint links in top position? #1016252Hi,
Please us this code to change the font-size of the links:
#top #wrap_all #header_meta a, #top #header_meta li, #top #wrap_all #header_meta .phone-info { font-size: 12px; }
Best regards,
PeterHi!
I fixed it by adjusting the code to
add_filter( 'the_content', 'avia_add_social_share_bar' ); function avia_add_social_share_bar( $content ) { global $avia_config; // Check if we're inside the main loop in a single post page. if ( is_single() && in_the_loop() && is_main_query() && !empty($avia_config['conditionals']['is_builder']) ) { return $content . do_shortcode("[av_social_share title='Share this entry' style='' buttons='' share_facebook='' share_twitter='' share_pinterest='' share_gplus='' share_reddit='' share_linkedin='' share_tumblr='' share_vk='' share_mail='' av-desktop-hide='' av-medium-hide='' av-small-hide='' av-mini-hide='']"); } return $content; }
Cheers!
Peter -
AuthorPosts