Forum Replies Created

Viewing 30 posts - 20,851 through 20,880 (of 35,061 total)
  • Author
    Posts
  • in reply to: Issue re. privacy for blog categories #1114737

    Hey Tilman,
    Sorry for the late reply, I don’t believe there are any settings for that in WordPress.
    I believe you will need a plugin like this one.

    Best regards,
    Mike

    in reply to: Change Color #1114734

    Hi,
    Glad we were able to help, we will close this now. Thank you for using Enfold.

    For your information, you can take a look at Enfold documentation here
    For any other questions or issues, feel free to start new threads in the Enfold forum and we will gladly try to help you :)

    Best regards,
    Mike

    in reply to: Fullscreen Slider Stop on 2nd Image #1114733

    Hi,
    I mean that on your site only the first two images show, but I’m not able to reproduce this on my localhost.
    So it doesn’t seem to be caused by the theme, perhaps a plugin is causing this.
    Have you tried to disable your plugins to see if this still occurs?

    Best regards,
    Mike

    in reply to: Ninja Forms not working after latest WordPress update #1114731

    Hi,
    I took a look at your pages from Win10 and on Chrome showned the form, but Edge and Firefox didn’t.
    When I inspected those two browsers they only showed this where the form goes:

    <noscript class="ninja-forms-noscript-message">
        Notice: JavaScript is required for this content.</noscript>

    This leads me to believe that the form is marking these browers as noscript in error.

    Best regards,
    Mike

    Hi,
    The EN version in a bit off because it looks like it was last saved as a default editor page instead of an Advanced Layout Builder page. I saved again for you, Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Change Color #1114726

    Hi,
    To change them both at the same time, please try this css:

    #full_slider_1 .caption_framed .slideshow_caption .avia-caption-title,#full_slider_1 .caption_framed .slideshow_caption .avia-caption-content p {
        background: rgba(25,58,97,0.5) !important; 
    }

    Best regards,
    Mike

    in reply to: Fullscreen Slider Stop on 2nd Image #1114724

    Hi,
    Thank you for the login, I checked the element and your settings, but I didn’t see a cause for this.
    I’m not able to reproduce this on my localhost.
    Have you tried disabling your plugins?

    Best regards,
    Mike

    in reply to: Remove date from search engines results #1114723

    Hi,
    We look forward to your results.

    Best regards,
    Mike

    in reply to: how to increase thumbnail size image for watchlist #1114722

    Hi,
    Thanks for the ftp access, I was not able to adjust the code to do want you wanted, I did find that if I use this css with it I could show it only on the /en/my-account/ page.

    #top:not(.page-id-29) .auction-time-countdown {
    display: none !important;
    }

    Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Sub Menu Font size #1114716

    Hi,
    Sorry for the late reply, to adjust the text size in the masonry please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    h3.av-masonry-entry-title.entry-title {
    font-size: 30px !important;
    }

    Please adjust the font size to suit, and Then clear your browser cache and any cache plugin, and check.

    Best regards,
    Mike

    Hi,
    I tried to create a pdf link in a code block element, but that also wouldn’t save.
    But I could save on a post, please see link in the Private Content area.

    I also found that you can use links created with: https://www.shorturl.at/
    I tested this with your page, please check.

    Best regards,
    Mike

    in reply to: Polylang vs. Enfold – Overwritting problem #1114705

    Hi,
    Odd when I look at your site the mobile seems the same:
    2019-06-30-150741

    Best regards,
    Mike

    in reply to: Remove date from search engines results #1114704

    Hi,
    Sorry, I don’t think I was very clear. The “meta property” in the header is one place the date shows
    But the date also shows lower in the page because of the “helper-markup.php” file
    So it is in two places.

    Best regards,
    Mike

    in reply to: Contact form in the footer #1114696

    Hi,
    I uploaded it again to your main site and now it seems to be working correctly.
    Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: firefox #1114688

    Hi,
    I have found the solution for the audio player, it needed to be turned off:
    2019-06-30-143058
    I have done this for you, Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Remove date from search engines results #1114675

    Hi,
    The structured-data datePublished is from Enfold, did you find the edit above removes it?

    Best regards,
    Mike

    in reply to: how to increase thumbnail size image for watchlist #1114673

    Hi,
    Glad to hear this is working, we could try adjusting it to only work on the one page like this:

    add_action( 'woocommerce_after_shop_loop_item_title','wpgenie_show_counter_in_loop',50 );
    if ( is_page('29') ) { 
    function wpgenie_show_counter_in_loop() {
    	global $product;
    
    	$time = '';
    
    	if ( ! isset( $product ) ) {
    		return;
    	}
    	if ( 'auction' !== $product->get_type() ) {
    		return;
    	}
    
    	$timetext = esc_html__( 'Time left', 'wc_simple_auctions' );
    
    	if ( ! $product->is_started() ) {
    		$timetext     = esc_html__( 'Starting in', 'wc_simple_auctions' );
    		$counter_time = $product->get_seconds_to_auction();
    	} else {
    		$counter_time = $product->get_seconds_remaining();
    	}
    	$future_class = ( $product->is_closed() === false ) && ( $product->is_started() === false ) ? 'future' : '';
    
    	$time = '<span class="time-left ">' . $timetext . '</span>
    	<div class="auction-time-countdown ' . $future_class . '"
    	data-time="' . esc_attr( $counter_time ) . '"
    	data-auctionid="' . intval( $product->get_id() ) . '" data-format="' . esc_attr( get_option( 'simple_auctions_countdown_format' ) ) . '"></div>';
    
    	if ( $product->is_closed() ) {
    		$time = '<span class="has-finished">' . __( 'Auction finished', 'wc_simple_auctions' ) . '</span>';
    	}
    
    	echo $time;
    }
    }

    I couldn’t test it on your site without ftp access.

    Best regards,
    Mike

    in reply to: Remove date from search engines results #1114667

    Hi,
    Yes I sure that this not from Enfold, this is all of the dates in your header:

    <meta property="article:published_time" content="2012-02-21T13:48:40+00:00">
    <meta property="article:modified_time" content="2019-06-30T17:10:27+00:00">
    <meta property="og:updated_time" content="2019-06-30T17:10:27+00:00">

    To remove the structured-data datePublished from the post please try editing:
    \enfold\includes\helper-markup.php
    starting about line 372 look for:

    if( !in_array('date', $exclude) )
    		{
    			$output .= "<span class='av-structured-data' {$entry_time_markup}>{$post->post_date}</span>";
    		}
    		
    		if( !in_array('date_modified', $exclude) )
    		{
    			$output .= "<span class='av-structured-data' {$date_markup}>{$post->post_modified}</span>";
    		}

    and comment out like this:

    /*if( !in_array('date', $exclude) )
    		{
    			$output .= "<span class='av-structured-data' {$entry_time_markup}>{$post->post_date}</span>";
    		}
    		
    		if( !in_array('date_modified', $exclude) )
    		{
    			$output .= "<span class='av-structured-data' {$date_markup}>{$post->post_modified}</span>";
    		}*/

    Best regards,
    Mike

    Hi,
    Thanks for the login, I have taken another look but I don’t see another way around this.
    As for your WPRocket, the idea was that the script would be included in the cache and execute before the page was done loading.
    But it looks like this won’t be the case. Since this is at the bottom of the page it won’t be seen unless you reload on top of it.
    Have you thought about using the “preloader” option in the theme settings, so the script is not seen?
    Best regards,
    Mike

    in reply to: firefox #1114641

    Hi,
    To only target the second slide, please try this css instead:

    @media only screen and (min-width: 767px) and (max-width: 1023px) { 
    .avia-slideshow-inner > li.slide-2 > div.avia-slide-wrap {
    max-height: 220px !important; 
    }
    }
    @media only screen and (min-width: 1024px) and (max-width: 1438px) { 
    .avia-slideshow-inner > li.slide-2 > div.avia-slide-wrap {
    max-height: 293px !important; 
    }
    }
    @media only screen and (min-width: 1439px) { 
    .avia-slideshow-inner > li.slide-2 > div.avia-slide-wrap {
    max-height: 430px !important; 
    }
    }

    Please adjust the height to suit and clear your browser cache.

    Best regards,
    Mike

    in reply to: Contact form in the footer #1114633

    Hi,
    Thank you, in your staging site I renamed your current theme to “enfold-old” then I renamed the new beta version “enfold” via ftp and then checked that your site was working correctly. I found that your contact shortcode in the footer widget was now working, with no other errors.
    Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Remove date from search engines results #1114622

    Hi,
    Thanks for the feedback, the date is in your “structured-data” Please try going to Enfold Theme Options > Layout Builder > Automated Schema.org HTML Markup and disabling.
    It is also showing in your header as

    meta property="article:published_time"

    which I believe is from an seo plugin because it’s not in our demos, please check and deactavate.

    Best regards,
    Mike

    in reply to: Can't save Enfold Child theme options #1114615

    Hi,
    The theme doesn’t make any connections to your site unless you are installing a demo, in which case it’s:

    Please ask your webhost to check your PHP settings to see if the secure options are activated.
    If “allow_url_fopen, “allow_url_include” and “register_globals” are “off”
    Try turning these “on”.

    Best regards,
    Mike

    Hi,
    I found that adding the attribute:

    onclick="window.open(this.href, 'windowName', 'width=1000, height=700, left=24, top=24, scrollbars, resizable'); return false;"

    forces a popup.
    Try adding this code to the end of your functions.php file in Appearance > Editor:

    Please see below

    Best regards,
    Mike

    Hi,
    Glad we were able to help, we will close this now. Thank you for using Enfold.

    For your information, you can take a look at Enfold documentation here
    For any other questions or issues, feel free to start new threads in the Enfold forum and we will gladly try to help you :)

    Best regards,
    Mike

    in reply to: Fullscreen Slider Stop on 2nd Image #1114594

    Hi,
    Sorry the info is not showing, please try again

    Best regards,
    Mike

    Hi,
    Please look at the bottom of the Enfold Theme Options page.
    2019-06-30-090009

    Best regards,
    Mike

    in reply to: Can't upload Demo #1114589

    Hi,
    Thanks for the login, I tried resetting your site and import a demo and found that you got this error:

    /wp-admin/admin-ajax.php Failed to load resource: the server responded with a status of 503 (Backend fetch failed)

    Is your webhost using “Varnish cache server” or similar? Try asking your webhost to turn it off for now, or ask your webhost to check the server logs for the cause.
    Another cause sometimes is the PHP security options are activated.
    If “allow_url_fopen, “allow_url_include” and “register_globals” are “off”
    Try turning these “on”, these are advanced settings so you may need to ask your webhost for help with this.

    Best regards,
    Mike

    in reply to: Burger Menu appearing too late #1114584

    Hi,
    Glad to hear you have sorted it out, we will close this now. Thank you for using Enfold.

    For your information, you can take a look at Enfold documentation here
    For any other questions or issues, feel free to start new threads in the Enfold forum and we will gladly try to help you :)

    Best regards,
    Mike

    in reply to: Add javascript onclick to a background image #1114557

    Hi,
    I took a look at your issue and came up with this jQuery to try:
    Try adding this code to the end of your functions.php file in Appearance > Editor:

    function custom_script(){
      ?>
      <script>
    jQuery(window).load(function(){
      var el = document.querySelector('.avia-builder-el-62');
          el.outerHTML = '<span class="wistia_embed wistia_async_yc4a91nw7z popover=true popoverAnimateThumbnail=true popoverContent=link" style="display: inline; position: relative;"><a href="#"><img src="https://flowster.app/wp-content/uploads/2019/06/Flowster-laptop-mockup-WP-FORUM.png" class="avia_image litespeed-loaded" data-src="https://flowster-wp.sfo2.cdn.digitaloceanspaces.com/2019/06/Flowster-mockup-laptop-cell-phone.webp" alt="" title="" itemprop="thumbnailUrl" data-was-processed="true"></a>' + el.innerHTML + '</span>';
      });
    </script>
    <?php
    }
    add_action('wp_footer', 'custom_script');

    while it does play the video in a popup, the laptop image is too small. But perhaps this will help put you on the right path.

    Best regards,
    Mike

Viewing 30 posts - 20,851 through 20,880 (of 35,061 total)