Forum Replies Created
-
AuthorPosts
-
Sanjip ShahParticipant
@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.Sanjip ShahParticipant@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.
Sanjip ShahParticipant@ctsma Try adding the video link in the Excerpt option box just below the post editor main box.
Sanjip ShahParticipant@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.
Sanjip ShahParticipant@ 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.Sanjip ShahParticipant@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.
Sanjip ShahParticipant@manelequinocci Welcome.
Sanjip ShahParticipant@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 } } ?>
Sanjip ShahParticipant@MairiaM You are welcome.
Sanjip ShahParticipant@manelequinocci Try this css. Paste this in custom css option box and click on ‘Save all Changes’.
.widget_ourclients { text-align: right; }
Sanjip ShahParticipant@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.
Sanjip ShahParticipant@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.
Sanjip ShahParticipant@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.
Sanjip ShahParticipant@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; }
Sanjip ShahParticipant@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.
-
AuthorPosts