Forum Replies Created

Viewing 20 posts - 9,361 through 9,380 (of 12,034 total)
  • Author
    Posts
  • in reply to: Event Date with year #163548
    Skandha
    Participant

    @cappellanova: Hello there,
    Can you please in your site URL.
    The ordering is not done by month/day but is done in the same order you have put them in the event section.

    Kind Regards,
    Skandha

    in reply to: hide Extra Header Widget Area on single pages #163543
    Skandha
    Participant

    @marie21: Using .page-id-2233 .textwidget {display: none;} the widget is being hidden when I check your site at my end. Please try clearing your browser cache and let me know if this works out!

    Kind Regards,
    Skandha

    in reply to: Customizing the footer #163535
    Skandha
    Participant

    @nomade-2018: I have just sent you an email. Please check it out!

    Kind Regards,
    Skandha

    in reply to: Style Sheet Errors with Version: 2.7 #163534
    Skandha
    Participant

    @husker: The issue you are having with the facebook and rss not showing up in featured content section is because of Updated Content delivered through the_content filter for security reason which has been made in 2.7 version.

    For this you will need to add a bit of code to your child theme.
    Go to => Child Theme Folder => functions.php and add the following Code.

    function catchresponsive_page_content( $options ) {
    	global $post;
    
    	$quantity 					= $options['featured_content_number'];
    
    	$more_link_text				= $options['excerpt_more_text'];
    
    	$show_content	= $options['featured_content_show'];
    
    	$catchresponsive_page_content 	= '';
    
       	$number_of_page 			= 0; 		// for number of pages
    
    	$page_list					= array();	// list of valid pages ids
    
    	//Get valid pages
    	for( $i = 1; $i <= $quantity; $i++ ){
    		if ( isset ( $options['featured_content_page_' . $i] ) && $options['featured_content_page_' . $i] > 0 ){
    			$number_of_page++;
    
    			$page_list	=	array_merge( $page_list, array( $options['featured_content_page_' . $i] ) );
    		}
    
    	}
    	if ( !empty( $page_list ) && $number_of_page > 0 ) {
    		$loop = new WP_Query( array(
                        'posts_per_page' 		=> $number_of_page,
                        'post__in'       		=> $page_list,
                        'orderby'        		=> 'post__in',
                        'post_type'				=> 'page',
                    ));
    
    		$i=0;
    		while ( $loop->have_posts()) : $loop->the_post(); $i++;
    			$title_attribute = the_title_attribute( array( 'before' => __( 'Permalink to: ', 'catch-responsive' ), 'echo' => false ) );
    
    			$excerpt = get_the_excerpt();
    
    			$catchresponsive_page_content .= '
    				<article id="featured-post-' . $i . '" class="post hentry featured-page-content">';
    				if ( has_post_thumbnail() ) {
    					$catchresponsive_page_content .= '
    					<figure class="featured-homepage-image">
    						<a href="' . esc_url( get_permalink() ) . '" title="'.the_title( '', '', false ).'">
    						'. get_the_post_thumbnail( $post->ID, 'catchresponsive-featured-content', array( 'title' => $title_attribute, 'alt' => $title_attribute, 'class' => 'pngfix' ) ) .'
    						</a>
    					</figure>';
    				}
    				else {
    					$catchresponsive_first_image = catchresponsive_get_first_image( $post->ID, 'catchresponsive-featured-content', array( 'title' => $title_attribute, 'alt' => $title_attribute, 'class' => 'pngfix' ) );
    
    					if ( '' != $catchresponsive_first_image ) {
    						$catchresponsive_page_content .= '
    						<figure class="featured-homepage-image">
    							<a href="' . esc_url( get_permalink() ) . '" title="'.the_title( '', '', false ).'">
    								'. $catchresponsive_first_image .'
    							</a>
    						</figure>';
    					}
    				}
    
    				$catchresponsive_page_content .= '
    					<div class="entry-container">
    						<header class="entry-header">
    							<h2 class="entry-title">
    								<a href="' . esc_url( get_permalink() ) . '" rel="bookmark">' . the_title( '','', false ) . '</a>
    							</h2>
    						</header>';
    						if ( 'excerpt' == $show_content ) {
    							$catchresponsive_page_content .= '<div class="entry-excerpt"><p>' . $excerpt . '</p></div><!-- .entry-excerpt -->';
    						}
    						elseif ( 'full-content' == $show_content ) {
    							$content = apply_filters( 'the_content', get_the_content() );
    							$content = str_replace( ']]>', ']]>', $content );
    							$catchresponsive_page_content .= '<div class="entry-content">' . $content . '</div><!-- .entry-content -->';
    						}
    					$catchresponsive_page_content .= '
    					</div><!-- .entry-container -->
    				</article><!-- .featured-post-'. $i .' -->';
    		endwhile;
    
    		wp_reset_postdata();
    	}
    
    	return $catchresponsive_page_content;
    }

    Let me know if this resolves the issue you are having.
    Also I have updated your theme to the latest version and backed up previous theme in Media Section.

    Kind Regards,
    Skandha

    in reply to: Size of images at News-page #163533
    Skandha
    Participant

    @svguitar: Hello there, I checked your site and you seem to have resolved the issue.

    Let me know if you have anymore issues!
    Kind Regards,
    Skandha

    in reply to: How do i disable the search button on the top right corner? #163532
    Skandha
    Participant

    @thejway: Hello there, I hope I was able to resolve your issue. If it’s not too much trouble, I have a quick request: could you please leave an honest review?
    https://wordpress.org/support/theme/fotografie-blog/reviews/#new-post
    Your review will help others know what to expect when they’re looking for the support I offer. Even a sentence or two would be hugely appreciated. Thanks, and if there’s anything else at all that I can do to help, don’t hesitate to let me know. Have a good day! 🙂

    Kind Regards,
    Skandha

    in reply to: In responsive view position of pictures change #163531
    Skandha
    Participant

    @emree025: When I check yours site at my end the images can be made upto 185px wide and be shown in two columns. Please check and let me know if this works out!

    Kind Regards,
    Skandha

    in reply to: Change capitalisation in menu #163529
    Skandha
    Participant

    @tim-van-rooijen: Go to => Appearance => Customize => Additional CSS and add the following CSS Code.

    #menu-hoofdmenu li {
    	text-transform:lowercase;
    }

    Let me know if this works out!
    Kind Regards,
    Skandha

    in reply to: how to increase the font size of the theme? #163527
    Skandha
    Participant

    @ttsales: Go to => Appearance => Customize => Additional CSS and add the following CSS Code.

    article .entry-content {
    	font-size:18px;
    }

    You can change the font size according to your requirement!
    Kind Regards,
    Skandha

    in reply to: Heather image #163526
    Skandha
    Participant

    @coconuts4sale: Go to => Appearance => Customize => Additional CSS and add the following CSS Code.

    .custom-header .wrapper {
         height:520px;
    }

    Let me know if this works out!
    Kind Regards,
    Skandha

    in reply to: Menu Icons/ Arrows #163522
    Skandha
    Participant

    @eschejac: Please post in your site URL so that I can look into the issue.

    Kind Regards,
    Skandha

    in reply to: Elementor #163521
    Skandha
    Participant

    @erich74: We have not performed compatibility test of our themes with Elementor so we do not official support Elementor or any such page builder plugins.

    Kind Regards,
    Skandha

    in reply to: Position of the top menu #163520
    Skandha
    Participant

    @coconuts4sale: Go to => Appearance => Customize => Additional CSS and add the following CSS Code.

    .main-navigation li {
    	text-align:center;
    }

    Let me know if this works out!
    Kind Regards,
    Skandha

    in reply to: Content layout #163516
    Skandha
    Participant

    @coconuts4sale: Go to => Dashboard and Edit that particular page where you have listed your services.
    Click on the text editor tab and replace your code with the following.

    <div class="services">
    <div class="services-1">
    
    <p><strong>For rights holders/sponsorship seekers:</strong></p>
    <ul>
     	<li>advising on your sponsorship opportunities</li>
     	<li>advising on your sponsorable assets</li>
     	<li>creating sponsorship levels</li>
     	<li>looking into potential sponsors and how to best approach them</li>
     	<li>reviewing sponsorship proposals</li>
     	<li>writing sponsorship proposals</li>
     	<li>demographic targeting</li>
     	<li>advising on how to communicate with potential sponsors</li>
     	<li>advising on your obligations to sponsors</li>
     	<li>legal view of your sponsorships</li>
     	<li>post-sponsorship evaluation and communication</li>
    </ul>
    </div>
    <div class="services-2">
    
    <p><strong>For brands/sponsors:</strong></p>
    <ul>
     	<li>reviewing sponsorship policies and guidelines</li>
     	<li>preparing sponsorship strategy</li>
     	<li>looking for the right rights holders</li>
     	<li>advising on how to communicate with rights holders</li>
     	<li>looking for brand activations opportunities</li>
     	<li>executing brand activations</li>
     	<li>value maximisation</li>
     	<li>post-sponsorship evaluation</li>
     	<li>recommendations for future sponsorship opportunities</li>
    </ul>
    </div>
    </div>
    <p><em><a href="https://coconuts4sale.com/contact/">Contact us</a> today for initial consultation and a quote!</em></p>

    Now Go to => Appearance => Customize => Additional CSS and add the following CSS Code.

    @media screen and (min-width:666px) {
    	.post-1001 .services {
    		display:table;
    		table-layout:fixed;	
    		width:100%;
    	}
    	.services-1, .services-2 {
    		display:table-cell;
    		padding:0 20px;
    	}
    }

    Let me know if this works out!
    Kind Regards,
    Skandha

    in reply to: Third level menus not appearing #163515
    Skandha
    Participant

    @bobgarretthomenetworks-co-uk: I checked your site and all your menu items seems to be appearing fine at my end. Can you attach me a screenshot of what you are referring to?

    Kind Regards,
    Skandha

    in reply to: Change capitalisation in menu #163483
    Skandha
    Participant

    @tim-van-rooijen: Please post in your site URL so that I can look into the issue.

    Kind Regards,
    Skandha

    in reply to: Featured Image Not Displaying in Blog #163482
    Skandha
    Participant

    @ellyhall: I’m afraid the feature to display featured image in single post/page is not available. I will look what can be done about it and will get back to you.

    Kind Regards,
    Skandha

    in reply to: hide Extra Header Widget Area on single pages #163472
    Skandha
    Participant

    @marie21: Can you let me know which site origin widgets are hidden that you want to show up.
    When you use .page-id-2233 .textwidget {display: none;} only the contact number and email text widget should be hidden.

    Kind Regards,
    Skandha

    in reply to: Header image not shrinking on mobile #163470
    Skandha
    Participant

    @centrescene: Please post in your site URL so that I can look into the issue.

    Kind Regards,
    Skandha

    in reply to: Header Image #163469
    Skandha
    Participant

    @inksla: Go to => Appearance => Customize => Additional CSS and add the following CSS Code

    @media screen and (min-width: 72em) {
    	.below-site-header {
    		margin-top:-800px;
    	}
    }

    You can alter the margin to change the position.
    Let me know if this is what you want!
    Kind Regards,
    Skandha

Viewing 20 posts - 9,361 through 9,380 (of 12,034 total)