Forum Replies Created

Viewing 30 posts - 31 through 60 (of 9,352 total)
  • Author
    Posts
  • in reply to: Add anker to each Tab in a Tab Sektion #1016456

    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,
    Peter

    in reply to: og image doesn't show on front page #1016455

    Hi,

    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,
    Peter

    Hi!

    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!
    Peter

    in reply to: Page Speed Issues #1016353

    Hi,

    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,
    Peter

    in reply to: Lighbox issue – pictures shown which do not belong to post #1016340

    Hi,

    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,
    Peter

    in reply to: Menu item – reload active page #1016336

    Hey 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,
    Peter

    in reply to: can not install enfold theme #1016332

    Hey,

    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,
    Peter

    in reply to: Header Slider from Replete in Enfold #1016330

    Hi,

    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,
    Peter

    in reply to: Code Block Glitch #1016329

    Hi,

    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,
    Peter

    in reply to: Website is down #1016327

    Hi,

    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,
    Peter

    in reply to: Blockquote font size #1016325

    Hey 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,
    Peter

    in reply to: Post thumbnails not showing on mobile #1016324

    Hey 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,
    Peter

    in reply to: Contact Form Submit Button Background Color #1016323

    Hey 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,
    Peter

    in reply to: How do i change the font colour of my woocommerce price #1016321

    Hi,

    Sure, try this code:

    
    #top #wrap_all p.price .woocommerce-Price-amount.amount{
    font-size 15px;
    }
    

    and adjust the px value.

    Best regards,
    Peter

    in reply to: deactivate portfolio #1016319

    Hi,

    Great, glad I could help you :)

    Best regards,
    Peter

    in reply to: Vertrag widerrufen #1016318

    Hi,

    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,
    Peter

    Hi,

    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,
    Peter

    in reply to: how to add image into full slider screen #1016312

    Hi!
    Great, glad you found a solution :)

    Best regards,
    Peter

    in reply to: Social Share not on blog posts #1016307

    Hi!
    I’ll close this thread now because the initial issue is solved. We’ll continue in the other thread.

    Best regards,
    Peter

    in reply to: Google Maps RetiredVersion Error #1016277

    Hi,

    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,
    Peter

    in reply to: Can I reuse enfold after deleting from one site. #1016272

    Hey 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,
    Peter

    in reply to: Enfold #1016270

    Hey 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,
    Peter

    in reply to: Vertrag widerrufen #1016265

    Hey 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,
    Peter

    Hi,

    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,
    Peter

    in reply to: Website is down #1016260

    Hi,

    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,
    Peter

    in reply to: Page Speed Issues #1016258

    Hi 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,
    Peter

    in reply to: Website is down #1016255

    Hi,

    I tried to connect to your ftp server but I just get timeout errors. Do you have web ftp?

    Best regards,
    Peter

    in reply to: How to prevent Enfold adding ?s= to search url #1016254

    Hi,
    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,
    Peter

    in reply to: Enfold (shop demo) privacy & imprint links in top position? #1016252

    Hi,

    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,
    Peter

    in reply to: Social Share not on blog posts #1016250

    Hi!

    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

Viewing 30 posts - 31 through 60 (of 9,352 total)