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 - 751 through 765 (of 846 total)
  • Author
    Posts
  • in reply to: Posts in frontpage full display #3725
    Sanjip Shah
    Participant

    @Maghanni Please go through the instruction here https://www.themehorse.com/theme-instruction/attitude-pro/#blogpage to create a page that shows
    posts with full display content. After you create such page, in the dashboard, go to Settings->Reading. Check on static page and select the page you just created as front page and click on ‘Save Changes’. Hope this helps.

    in reply to: posts in page #3724
    Sanjip Shah
    Participant
    in reply to: COntrol over posts on non static homepage #3723
    Sanjip Shah
    Participant

    @Huub In the dashboard, go to Settings->Reading. Set the ‘Blog pages show at most’ as you like and click on ‘Save Changes’ button. Try this out and see if this helps.

    in reply to: Blog posts on business template? #3698
    Sanjip Shah
    Participant

    @markp316 There is no such widget within our theme that you can use with the business sidebar to show the most recent posts. You could try using featured post widget plugin so similar widget plugin and see if it works.

    in reply to: Responsive Forum in Attitude #3690
    Sanjip Shah
    Participant

    @chemdata Yes this is bbPress. I think it will also work for the Attitude theme with the responsiveness. . You could give it a try.

    in reply to: Page title alignment on Featured Widget #3689
    Sanjip Shah
    Participant

    @CindieCag Okay. Great! 🙂

    in reply to: Tables on website have lost responsiveness #3656
    Sanjip Shah
    Participant

    @Mowjee It’s the table that is causing the issue. There are many number of columns in the first table, the table is shrinking to the point it could. Try making the words of the column smaller.

    Sanjip Shah
    Participant
    in reply to: Page title alignment on Featured Widget #3654
    Sanjip Shah
    Participant

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

    #content .widget_recent_work .custom-gallery-title, 
    #content .widget_recent_work .custom-gallery-title a {
    	text-align: left;
    }
    in reply to: menu text on drop down smart phone navigation #3642
    Sanjip Shah
    Participant

    @yflyjump Okay.

    in reply to: Homepage columns like preview #3641
    Sanjip Shah
    Participant

    @gladiolus2803 Please send your temporary username and password via here https://www.themehorse.com/contact-us/free-support/ ( NOT HERE ) and we will create a demo business home page, you can then look into it and change it. Also its @sanjip-shah not @sanjipsingh 🙂

    Sanjip Shah
    Participant

    @lindagrandjct Firstly, we had the Home’s Corporate Page Layout only and did not have the Corporate Page template. After that our users asked to provide the Corporate Layout as a Page template so they could use SEO plugins to add the seo meta descriptions and also use as a page rather than only on home page, so we added it and also added some extra features to it. So, we added it later and did not remove the Home’s Corporate Page Layout as some previous users might be still using it.
    You could use the Home’s corporate page layout for the home page checking on ‘Your Latest Posts’ option in Settings->Reading. And you could use the Corporate Page Template for any other page.

    in reply to: Homepage columns like preview #3619
    Sanjip Shah
    Participant

    @gladiolus2803 You need to use the business template for a page and set it as the static home page. I checked your link and you are using default page for your home page. Please read the instruction here https://www.themehorse.com/theme-instruction/attitude/#businesslayout in detail.

    in reply to: Attitude Free – responsive at 1024×768 #3614
    Sanjip Shah
    Participant

    @artwerk The width of our theme is 1038px, so in the 1024px viewport we have changed the theme width to 708px. To make the changes you will have to make the corresponding changes in the media query css in style.css file.

    Sanjip Shah
    Participant

    @shawnhoffman All you have done is perfect. You could also do as follows as another way. Just add your new sidebar only in the functions.php file without removing the parent sidebars, widgets and again adding them. Try this out as well and see if this works.

    Q1) If you do like this then you don’t have to remove the action and again add it. Adding the code below will just append your new sidebar.
    Q2) Adding _child is just a way to use a different function name, if you use the same function name attitude_widgets_init in the child theme then their will be same function definition in two places one in parent theme and one in child theme. This function is not pluggable function so adding this in child theme will not overwrite the parent function. So, using same name in this case will cause problem.
    Q3) Require once code will be unnecessary after you do as you done now.

    <?php;
    
    function attitude_child_widgets_init() {
    
    // Registering Business2 Page template sidebar
    	register_sidebar( array(
    		'name' 				=> __( 'Business2 Page Sidebar', 'attitude' ),
    		'id' 					=> 'attitude_business2_page_sidebar',
    		'description'   	=> __( 'Shows widgets on Business2 Page Template. Sutiable widget: Theme Horse: Featured widget, Theme Horse: Testimonial, Theme Horse: Services', 'attitude' ),
    		'before_widget' 	=> '<section id="%1$s" class="widget %2$s">',
    		'after_widget'  	=> '</section>',
    		'before_title'  	=> '<h1 class="widget-title">',
    		'after_title'   	=> '</h1>'
    	) );	
    }
    
    add_action( 'widgets_init', 'attitude_child_widgets_init' );
    
    add_action( 'attitude_business2_template_content', 'attitude_business2_template_widgetized_content', 10 );
    /**
     * Displays the widget as contents
     */
    function attitude_business2_template_widgetized_content() { ?>
    	<div id="content">
    		<?php if( is_active_sidebar( 'attitude_business2_page_sidebar' ) ) {
    
    			// Calling the footer sidebar if it exists.
    			if ( !function_exists( 'dynamic_sidebar' ) || !dynamic_sidebar( 'attitude_business2_page_sidebar' ) ):
    			endif;
    		}
    		?>
    	</div><!-- #content -->
    <?php
    }
    
    ?>
Viewing 15 posts - 751 through 765 (of 846 total)