Forum Replies Created
-
AuthorPosts
-
Sanjip ShahParticipant
@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.Sanjip ShahParticipant@Huub Try out this plugin http://wordpress.org/plugins/posts-in-page/.
Sanjip ShahParticipant@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.
Sanjip ShahParticipant@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.
Sanjip ShahParticipant@chemdata Yes this is bbPress. I think it will also work for the Attitude theme with the responsiveness. . You could give it a try.
Sanjip ShahParticipant@CindieCag Okay. Great! 🙂
Sanjip ShahParticipant@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.
August 29, 2013 at 7:54 am in reply to: Difference between Home's Corp. Type Layout Options and Corp. Pg Template Option #3655Sanjip ShahParticipant@lindagrandjct Okay.
Sanjip ShahParticipant@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; }
Sanjip ShahParticipant@yflyjump Okay.
Sanjip ShahParticipant@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 🙂
August 28, 2013 at 7:09 am in reply to: Difference between Home's Corp. Type Layout Options and Corp. Pg Template Option #3640Sanjip ShahParticipant@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.Sanjip ShahParticipant@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.
Sanjip ShahParticipant@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.
August 27, 2013 at 7:28 am in reply to: Possible to have a second business page (with different widget pages)?? #3613Sanjip ShahParticipant@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 } ?>
-
AuthorPosts