badget

Biggest Sale! Special Offer!

Get 30% discount on all of our single themes with this coupon code: #30%SALE

Hurry up! *Limited time offer*

Sanjip Shah

Forum Replies Created

Viewing 15 posts - 646 through 660 (of 846 total)
  • Author
    Posts
  • in reply to: Footers #4303
    Sanjip Shah
    Participant

    @mjbarnet It looks like some plugin conflict. I viewed the source of you site and see the following part that might be causing the error.
    <div class="cbd"><a href="http://jtsfs.com/about-us/"><img src="http://jtsfs.com/wp-content/uploads/2013/07/SO_Best_Insurance_Agents_Logo_2013-e1377177778345.png"></ </div>
    The problem is that the closing tag of a ‘‘ is missing. Please fix this and hope this will fix the issue.

    in reply to: sidbar not showing #4302
    Sanjip Shah
    Participant

    @kormi I had visited your site yesterday and the left sidebar was showing in the left side of the content where it was supposed to. I just visited your site and it now looks that you are using another theme.

    in reply to: YouTube Videos in Exceprts #4300
    Sanjip Shah
    Participant

    @ctsma Try adding the video link in the Excerpt option box just below the post editor main box.

    in reply to: Change Font Size of Slider text #4299
    Sanjip Shah
    Participant

    @vlinder Please provide a link to your site and we will provide you the custom css. It will be easier for us to provide the exact css after viewing your site.

    in reply to: sidbar not showing #4291
    Sanjip Shah
    Participant

    @ Just visited your site and I see that the left sidebar is there. The text vbfxcv in your page is from the left sidebar. In the dashboard,
    go to Appearance->Widgets. Drag more other widget to left sidebar. Then again visit your site. You will see the added widgets in the left sidebar.

    in reply to: Put page title in the breadcrumbs bar #4290
    Sanjip Shah
    Participant

    @Petrichor I visited your site you are using the Attitude Pro. You need to create the child theme of the Attitude Pro and paste the above code in the child theme’s functions.php file.

    in reply to: Footer column 3 to the right #4287
    Sanjip Shah
    Participant
    in reply to: Put page title in the breadcrumbs bar #4286
    Sanjip Shah
    Participant

    @Petrichor Making this file wp-content/themes/attitude-pro-child/library/structure/content-extensions.php is a wrong approach.
    Making the same file name in the child theme will not overwrite the parent file so it has no meaning (as it is not a template but a fucntion extension file) and is wrong. Create the functions.php file in the child theme and paste the following code. That’s it.

    <?php
    function attitude_header_title() {
    	if( is_archive() ) {
    		$attitude_header_title = single_cat_title( '', FALSE );
    	}
    	elseif( is_404() ) {
    		$attitude_header_title = __( 'Page NOT Found', 'attitude' );
    	}
    	elseif( is_search() ) {
    		$attitude_header_title = __( 'Search Results', 'attitude' );
    	}
    	elseif( is_page_template()  ) {
    		$attitude_header_title = get_the_title();
    	}
    
    	elseif( is_page()  ) {
    		$attitude_header_title = get_the_title();
    	}
    
    	else {
    		$attitude_header_title = '';
    	}
    
    	return $attitude_header_title;
    
    }
    function attitude_theloop_for_page() {
    	global $post;
    
    	if( have_posts() ) {
    		while( have_posts() ) {
    			the_post();
    
    			do_action( 'attitude_before_post' );
    ?>
    	<section id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
    		<article>
    
    			<?php do_action( 'attitude_before_post_header' ); ?>
    
      			<?php do_action( 'attitude_after_post_header' ); ?>
    
      			<?php do_action( 'attitude_before_post_content' ); ?>
    
      			<div class="entry-content clearfix">
        			<?php the_content(); ?>
        			<?php
        				wp_link_pages( array( 
    						'before'            => '<div style="clear: both;"></div><div class="pagination clearfix">'.__( 'Pages:', 'attitude' ),
    						'after'             => '</div>',
    						'link_before'       => '<span>',
    						'link_after'        => '</span>',
    						'pagelink'          => '%',
    						'echo'              => 1 
                   ) );
        			?>
      			</div>
    
      			<?php 
    
      			do_action( 'attitude_after_post_content' );
    
      			do_action( 'attitude_before_comments_template' ); 
    
             comments_template(); 
    
             do_action ( 'attitude_after_comments_template' );
    
             ?>
    
    		</article>
    	</section>
    <?php
    			do_action( 'attitude_after_post' );
    
    		}
    	}
    	else {
    		?>
    		<h1 class="entry-title"><?php _e( 'No Posts Found.', 'attitude' ); ?></h1>
          <?php
       }
    }
    ?>
    in reply to: Trouble Uploading Header Logo #4282
    Sanjip Shah
    Participant

    @MairiaM You are welcome.

    in reply to: Footer column 3 to the right #4281
    Sanjip Shah
    Participant

    @manelequinocci Try this css. Paste this in custom css option box and click on ‘Save all Changes’.

    .widget_ourclients {
        text-align: right;
    }
    in reply to: Font preview? #4280
    Sanjip Shah
    Participant

    @gassho and @kikicuisine Thanks for the feedback. For now you can preview the fonts here http://www.google.com/fonts. We will see the preview feature in our version updates. Thanks.

    in reply to: "Read more" #4277
    Sanjip Shah
    Participant

    @kikicuisine I have replied you in your other post, see if thats what you are looking for? If not you can reply in the same thread and I will get back to you. Thanks.

    in reply to: 'read more' deletion #4276
    Sanjip Shah
    Participant

    @kikicuisine You could try using the Blog Full Content Display, here is the instruction https://www.themehorse.com/theme-instruction/attitude-pro/#blogpage Hope this helps.

    in reply to: Remove Post info at end of an entry #4274
    Sanjip Shah
    Participant

    @Ldessens In the dashboard, go to Appearance->Theme Options->Design Options Tab->Custom CSS. Paste the following css and click on ‘Save all Changes’.

    .entry-meta-bar {
        display: none;
    }
    in reply to: Gallery page not showing social icons #4272
    Sanjip Shah
    Participant

    @manelequinocci Those social sharing will appear in the single page view. For the gallery there is no single image/page view, it appears in a fancy box. Thus it the social sharing icons are not appearing. We have designed to show the image in fancybox and not in a single page/imagepage view.

Viewing 15 posts - 646 through 660 (of 846 total)