Forum Replies Created

Viewing 30 posts - 37,291 through 37,320 (of 66,745 total)
  • Author
    Posts
  • in reply to: Bottom Border Styling Arrow not visible #741568

    Hi!

    The arrow is not working because of the background image. The color section or the “.av-parallax-section” container’s css overflow property is set to “hidden”. We can set the property to “visible” and the arrow will display but the background image will overflow or will be visible outside the container. And the arrow doesn’t blend well with the background. You cant test it with the following css code.

    .av-parallax-section {
        overflow: visible;
    }

    // https://piano-revolution.de/dev/test-2/

    Cheers!
    Ismael

    in reply to: SHow PRIVATE post on Mansory? #741560

    Hi!

    The filter is not working on archive pages because it’s using the postslider element. Please replace the code with:

    add_filter('avia_post_slide_query', 'avia_post_slide_query_mod', 10, 2);
    function avia_post_slide_query_mod( $query, $params ) {
    	$query['post_status'] = array( 'publish', 'private' );
    	return $query;
    }
    
    add_filter('avia_masonry_entries_query', 'avia_masonry_entries_query_mod', 10, 2);
    function avia_masonry_entries_query_mod( $query, $params ) {
    	$query['post_status'] = array( 'publish', 'private' );
    	return $query;
    }

    If this filter is not working, you need to modify the archive.php file, look for the custom query parameter.

    'custom_query' => array( 'post__in'=>$post_ids, 'post_type'=>get_post_types() )
    

    Regards,
    Ismael

    in reply to: No webshop after wholesale logged in #741550

    Hey!

    The wholesale account is working but I can’t access the dashboard with it. I tried the “admin” account but it’s not working. If possible, please provide the FTP details as well so that we can edit the template. Thank you for your patience.

    Best regards,
    Ismael

    in reply to: Custom Post Type – Elegant Blog Slide Meta Question #741545

    Hi!

    I’m not sure what you did but the “Excerpt” feature is probably disabled before. Anyway, glad that is working now. :)

    Regards,
    Ismael

    in reply to: problem with update #741543

    Hey!

    You’re welcome. Let us know if you encounter any issues again.

    Regards,
    Ismael

    in reply to: Picture Action in my galery is lost #741542

    Hi!

    I think you’re referring to the default WP gallery.

    // https://codex.wordpress.org/The_WordPress_Gallery

    You need to add the following css code because the theme hides the captions.

    #top .gallery .gallery-item {
        width: auto;
        height: auto;
    }
    
    #top .gallery-caption {
        display: block;
        float: none;
    }

    Regards,
    Ismael

    in reply to: Small preview size has been #741076

    Hi jgarciamel!

    Thank you for using Enfold.

    Please install the following plugin then go to the Settings > Media panel. Adjust the size of the “Thumbnail”, update, save then regenerate the thumbnails.

    // https://wordpress.org/plugins/simple-image-sizes/

    Regards,
    Ismael

    in reply to: More Events Calendar Breadcrumb issues #741074

    Hey rlhinirv57!

    Thank you for using Enfold.

    Please add this in the functions.php file:

    add_filter( 'avia_breadcrumbs_trail', 'avia_breadcrumbs_trail_mod', 50, 2 );
    function avia_breadcrumbs_trail_mod( $trail, $args ) {
    	if ( is_archive('tribe_events') && $trail['trail_end'] == 'Events') {
    		unset($trail[1]);
    	}
    	return $trail;
    }
    
    

    Cheers!
    Ismael

    in reply to: SHow PRIVATE post on Mansory? #741071

    Hi kilimats!

    Thank you for using Enfold.

    Private posts can only be displayed for users who are currently logged in. Can users login to your site? Please add this in the functions.php file.

    add_filter('avia_masonry_entries_query', 'avia_masonry_entries_query_mod', 10, 3);
    function avia_masonry_entries_query_mod( $query, $params, $masonry ) {
    	$query['post_status'] = array( 'publish', 'private' );
    	return $query;
    }

    NOTE: This is not going to work unless users are logged in.

    Regards,
    Ismael

    in reply to: Use Enfold lightbox for plugin? #741065

    Hi Audica1!

    Thank you for using Enfold.

    I’m sorry but I’m not familiar with the plugin. I’m trying to look for its documentation but I can’t find any. What is the lightbox script used by the plugin? Please contact the plugin author for additional help.

    Best regards,
    Ismael

    in reply to: Images blog post not showing in Safari #741062

    Hi tliebl!

    Thank you for using Enfold.

    I’m sorry but what do you mean by “title image”? I checked the site on safari and every posts contains a title and featured image.

    View post on imgur.com

    Cheers!
    Ismael

    in reply to: Grid style blog page -move title above categories #741060

    Hi cagraphicdesign!

    Thank you for using Enfold.

    Please add this in the functions.php file:

    // change title position
    function ava_custom_script() {
    ?>
    	<script type="text/javascript">
    	(function($) {
    		function a() {
    			$('.slide-entry').each(function() {
    				var title = $(this).find('.slide-entry-title'),
    					image = $(this).find('.slide-image');
    
    				$(title).insertAfter(image);
    			});
    
    			}
    
    			a();
    	})(jQuery);
    	</script>
    <?php
    }
    add_action('wp_footer', 'ava_custom_script');

    Cheers!
    Ismael

    in reply to: Purchase Code failing #741058

    Hey!

    I’ve entered the Purchase Code a number of times and continue to receive this error message:

    Where exactly are you using the Purchase Code? This code is usually use to register to the forum. Where else do you want it to be used? Like what @Vinay said, the purchase code has been already used in the forum registration. The email is (emilyathibardgroup.com).

    Regards,
    Ismael

    in reply to: Twitter feed within Post Slider Feature Request #741055

    Hi Eric!

    Thank you for using Enfold.

    That’s possible but it will require heavy customization of the postslider.php file. If you want, you can create your own shortcode element in the advance layout builder using the postslider.php file as template.

    // http://kriesi.at/documentation/enfold/add-new-or-replace-advanced-layout-builder-elements-from-child-theme/

    Best regards,
    Ismael

    in reply to: How can I add shortcode content to the header? #741054

    Hey!

    Great! Thanks for sharing. :)

    Cheers!
    Ismael

    in reply to: Adding a visible drop down menu under main menu #741053

    Hi!

    Please post the login details in the private field so that we can create an example of the mega menu. Is this what you want?

    // http://kriesi.at/documentation/enfold/setting-up-your-mega-menu/

    Cheers!
    Ismael

    in reply to: Display the Code Only Single Page in tag. #741050

    Hi!

    Please use the is_page or is_front_page conditional function.

    // https://developer.wordpress.org/reference/functions/is_page/
    // https://codex.wordpress.org/Function_Reference/is_front_page\

    Or remove the code from the header.php file then add this in the functions.php file.

    add_action('wp_head', 'wp_head_mod_gs');
    function wp_head_mod_gs() { 
    	if(is_front_page()) {
    	?>
    		<script type="application/ld+json">
    		{
    		  "@context": "http://schema.org",
    		  "@type": "WebSite",
    		  "url": "http://career.guru99.com/",
    		  "potentialAction": {
    		    "@type": "SearchAction",
    		    "target": "http://career.guru99.com/search?q={search_term_string}",
    		    "query-input": "required name=search_term_string"
    		  }
    		}
    		</script>
    <?php	
    	}
    }
    

    Regards,
    Ismael

    in reply to: Color Section with video background keeps on re-downloading #741046

    Hi!

    Please check the chrome’s dev tool settings and make sure that the Network > Disable cache (while DevTools is open) option is disabled. I can’t find the video described in the screenshot but I found these videos.

    canary-wharf-residential-residences-one-park-drive-1.mp4	
    1PD_WEB_ANI_S04_V03_LOOPED_MP4
    1PD_WEB_ANI_S05_V04_MP4_1.mp4
    canary-wharf-residential-residences-one-park-drive-1.mp4
    1PD_WEB_ANI_S04_V03_LOOPED_MP4_1.mp4
    1PD_WEB_ANI_S05_V04_MP4_1.mp4	
    1PD_WEB_ANI_S06_V03_MP4_1.mp4	
    1PD_WEB_ANI_S07_V04_LOOPED_MP4_1.mp4
    1PD_WEB_ANI_S09_V04_LOOPED_MP4_1.mp4

    If you check the Initiator column, you can see the where the file is coming from. On the succeeding load, the Initiator value is set to “Other” which means that it is initiated by the browser, from cache. I’m not really sure about this info but you can check it here.

    // http://commandlinefanatic.com/cgi-bin/showarticle.cgi?article=art034

    Also, the file size of the following video is quite too big (94 MB).

    // http://ec2-52-56-62-51.eu-west-2.compute.amazonaws.com/wp-content/uploads/2017/01/canary-wharf-residential-residences-one-park-drive-1.mp4

    Best regards,
    Ismael

    in reply to: Picture Action in my galery is lost #741034

    Hi!

    I´m using the theme´s gallery. Once there was a caption… as in the link – you´ve sent – at the point “Bigger Gallery with Preview”.

    I’m sorry but I don’t see any caption there. Like I said, you can only see the caption as tooltip. If you want the image to contain captions, please try the Easy Slider.

    Regards,
    Ismael

    in reply to: Custom Post Type – Elegant Blog Slide Meta Question #741032

    Hey tjswarbs78!

    Thank you for using Enfold.

    Did you add an excerpt to the post? The post meta info such as the date will only display if there is an existing excerpt. Please provide the link to the actual one page so that we can check the issue.

    Regards,
    Ismael

    Hey condonpb!

    Thank you for using Enfold.

    Please add this in the functions.php file:

    // change logo
    function ava_custom_script() {
    ?>
    	<script type="text/javascript">
    	(function($) {
    		function a() {
    			$('#header').find('.logo img').attr('src', 'LARGER LOGO URL');
    			$('#header:not(".av_header_transparency")').find('.logo img').attr('src', 'SMALLER LOGO URL');
    		}
    
    		$(window).scroll(function() {
    			a();
    		}).scroll();
    	})(jQuery);
    	</script>
    <?php
    }
    add_action('wp_footer', 'ava_custom_script');

    Adjust the “LARGER LOGO URL” and the “SMALLER LOGO URL”.

    Best regards,
    Ismael

    Hey KarenRushforth!

    Thank you for using Enfold.

    They should be converted automatically once you set up the ssl. If not, you can try the following plugins.

    // https://wordpress.org/plugins/wp-force-ssl/
    // https://wordpress.org/plugins/wp-force-https/
    // https://wordpress.org/plugins/really-simple-ssl/

    Best regards,
    Ismael

    in reply to: Sub Level Header font size and drop down #741020

    Hi!

    Thank you for using Enfold.


    @wcnorris10
    : Please try @begrafiks’ suggestions.


    @begrafiks
    : Thanks for helping out.

    Regards,
    Ismael

    in reply to: Bottom Border Styling Arrow not visible #741019

    Hey joerka27!

    Thank you for using Enfold.

    I can’t find the issue with the arrow, the markup looks correct. Did you add any css modifications to the theme? Please post the login details here so that we can check the settings.

    Best regards,
    Ismael

    in reply to: Small arrow right side #741015

    Hey!

    We can apply a minimum height to the column with the background image so that it will still be visible on smaller screens.

    .flex_column.img-arrow {
        min-height: 500px;
    }

    Adjust the value as needed. You can also use css media queries to adjust the value on different screen sizes.

    Cheers!
    Ismael

    in reply to: Transparent header on blog page #741011

    Hi!

    We were able to fix the page but we disabled the sidebar and then use the widget area element as a replacement. There’s a persistent color section on top of the page but I don’t know where it’s coming from so I added an internal styling in the page to remove that container.

    Best regards,
    Ismael

    in reply to: Using posts to create a flip card? #741007

    Hi!

    This is the “excerpt” part:

    $excerpt = apply_filters( 'avf_post_slider_entry_excerpt', $excerpt, $prepare_excerpt, $permalink, $entry );
    					$output .= !empty($excerpt) ? "<div class='slide-entry-excerpt entry-content' $markup>".$excerpt."</div>" : "";
    

    If you want to include the date, comments etc. Include this block of code.

                        if($show_meta && !empty($excerpt))
    					{
    						$meta  = "<div class='slide-meta'>";
    						if ( $commentCount != "0" || comments_open($the_id) && $entry->post_type != 'portfolio')
    						{
    							$link_add = $commentCount === "0" ? "#respond" : "#comments";
    							$text_add = $commentCount === "1" ? __('Comment', 'avia_framework' ) : __('Comments', 'avia_framework' );
    
    							$meta .= "<div class='slide-meta-comments'><a href='{$link}{$link_add}'>{$commentCount} {$text_add}</a></div><div class='slide-meta-del'>/</div>";
    						}
                            $markup = avia_markup_helper(array('context' => 'entry_time','echo'=>false, 'id'=>$the_id, 'custom_markup'=>$custom_markup));
    						$meta .= "<time class='slide-meta-time updated' $markup>" .get_the_time(get_option('date_format'), $the_id)."</time>";
    						$meta .= "</div>";
    
    						if($blogstyle !== "elegant-blog")
    						{
    							$output .= $meta;
    							$meta = "";
    						}
    					}

    Regards,
    Ismael

    in reply to: problem with update #741005

    Hey!

    We added this script again in the functions.php file.

    // https://kriesi.at/support/topic/problem-with-update-3/#post-649521

    Please create a child theme so that you won’t have to re-add this snippet when you update the theme.

    // http://kriesi.at/documentation/enfold/using-a-child-theme/

    Regards,
    Ismael

    in reply to: Portfolio order is not making sense #741003

    Hi!

    I’m sorry but the items can only be sorted by the date the posts was published. If you want to sort it manually, you can try this plugin.

    // https://wordpress.org/plugins/post-types-order/

    Please note that this plugin can cause issues with the post navigation.

    Once you’ve set it up, can you please let me know what you did so I can know for the future?

    The filter is located in the functions.php file.

    Cheers!
    Ismael

    in reply to: Google maps #741001

    Hey!


    @rolandaa
    : The map is working. Please remove browser cache or hard refresh.


    @esven
    : I can see the map in the page.


    @yurpster
    : Did you set the API key in the Enfold > Google Services > Google Maps API Key field?

    Cheers!
    Ismael

Viewing 30 posts - 37,291 through 37,320 (of 66,745 total)