badget

Biggest Sale! Special Offer!

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

Hurry up! *Limited time offer*

Search Results for 'user'

Viewing 15 results - 631 through 645 (of 685 total)
  • Author
    Search Results
  • #5530

    In reply to: Set-Up Child Theme

    Rabin Shrestha
    Participant

    Hi Henderson,

    Can you post link to your site with child theme loaded so we can have a look or you can mail us temporary username and password for the site here https://www.themehorse.com/contact-us/free-support/

    Rabin

    ka222
    Participant

    Dear users,

    I would like to arrange my homepage (Business Page Sidebar) without header but page sider including. Does anybody know how to get page sider only in homepage and header in other pages?

    br, ka

    siredgar
    Participant

    @sanjip-shah Thanks, that has helped me to fix it now. I used

    <?php
    }

    instead to get it working. If anyone else is trying to multi business page then this is what i have working in the functions.php 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>'
    	) );	
    }
    {
    // Registering Business3 Page template sidebar
    	register_sidebar( array(
    		'name' 				=> __( 'Business3 Page Sidebar', 'attitude' ),
    		'id' 					=> 'attitude_business3_page_sidebar',
    		'description'   	=> __( 'Shows widgets on Business3 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 );
    add_action( 'attitude_business3_template_content', 'attitude_business3_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
    }
    function attitude_business3_template_widgetized_content() { ?>
    	<div id="content">
    		<?php if( is_active_sidebar( 'attitude_business3_page_sidebar' ) ) {
    
    			// Calling the footer sidebar if it exists.
    			if ( !function_exists( 'dynamic_sidebar' ) || !dynamic_sidebar( 'attitude_business3_page_sidebar' ) ):
    			endif;
    		}
    		?>
    	</div><!-- #content -->
    <?php
    }
    ?>

    Thanks for all your help 🙂

    siredgar
    Participant

    @sanjip-shah Thanks, I really appreciate your help on this.

    <?php
    /**
     * Template Name: Business Template2
     *
     * Displays the Business Layout of the theme.
     *
     * @package Theme Horse
     * @subpackage Attitude
     * @since Attitude 1.1
     */
    ?>
    
    <?php get_header(); ?>
    
    <?php
    	/** 
    	 * attitude_before_main_container hook
    	 */
    	do_action( 'attitude_before_main_container' );
    ?>
    
    <div id="container">
    	<?php
    		/** 
    		 * attitude_business2_template_content hook
    		 *
    		 * HOOKED_FUNCTION_NAME PRIORITY
    		 *
    		 * attitude_display_business2_template_content 10
    		 */
    		do_action( 'attitude_business2_template_content' );
    	?>
    </div><!-- #container -->
    
    <?php
    	/** 
    	 * attitude_after_main_container hook
    	 */
    	do_action( 'attitude_after_main_container' );
    ?>
    
    <?php get_footer(); ?>

    In my widget dashboard I can see ‘Business3 page sidebar’ and ‘Business2 page sidebar’ and I can also select page layout as ‘business template2’ or ‘business template3’

    I currently have business 2 at activities> and business 3 at course choice page> I have just put a text widget (title: ‘Course Choice Title’ and text: ‘Course Choice Text’ into the ‘Business3 page sidebar’ this text displays on the activities(business2) page not the course choice page(business3).

    Also displayed on the activities(business2) page is the following snippet from the functions.php:
    add_action( ‘attitude_business3_template_content’, ‘attitude_business3_template_widgetized_content’, 10 ); /** * Displays the widget as contents */ function attitude_business3_template_widgetized_content() { ?>

    #5372

    In reply to: Gallery Four Column

    Sanjip Shah
    Participant

    @BlackWidow I think Add featured image for this post this is the place where you went wrong, just a guess though. I think you have added the image in the content of the page. You need to add the featured image. If you see in the screen when adding the gallery post you will see a Featured image option box. Then click on set featured image link and set the featured image from there and click on ‘Update’. Try this and see if this solves the issue. If the issue does not get solved, then you can send your temporary username and password via our contact page not here and I will look into it.

    siredgar
    Participant

    @sanjip-shah Hi Sanjip, The code unfortunately displays the business3 links on the business2 page. Is there a problem with the php above? thank you!

    siredgar
    Participant

    is it possible to have a third business page? please could you tell me what the code forthe functions.php will be? I have tried having the code above twice, once for business2 and once for business3 along with adding the page-template-business2.php and page-template-business3.php files but it only shows business2 widget. Thank you!

    #5187
    Sanjip Shah
    Participant

    @Pablo We have tried this in our testing environment and it works all fine. This might be a plugin conflict, try disabling the active plugins one by one and see if this solves the issue. If you still can’t fix the issue you can send you site, temporary username and password via our contact form (NOT HERE) and we will look into it.

    #5090
    Sanjip Shah
    Participant

    @bretwalker11 In the Appearance options of rev slider see if the Padding (border) is set to 10px. If yes change it to 0. If this still does not solve the issue please provide us your temporary username and password via our contact page (NOT HERE) and we well look into it.

    #4892

    In reply to: bbPress Search Results

    Rabin Shrestha
    Participant

    Hi Bob,

    Don’t post passwords and username in public forum. That’s not a good idea.

    Currently seems our theme is not compatible to bbpress so we have to work on that to make it compatible. But if you are good at tweaking codes you can go ahead.

    Rabin

    #4847

    Hello
    How to I change the max width of the images for the slider?? I can’t get past the 1400 width and on my 1920 screen it looks wrong (and the labels / text box is over white space and pic

    I have increased the WP media max large pic size, i have your Retina plug in in place – but at 1920 the pic (which is 2400 wide) only shows with 20% border on each edge)

    Brand new user here ,just bought the pro theme yesterday, not highly experience and would appreciate a quick answer / any help you have)

    #4737
    mcksusan
    Participant

    Thanks Rabin, that worked for the main shop page: http://ganachecakesnbakes.com/shop/

    However, from the SHOP page, a user can click on a product for purchase. When you go to an individual product page, the drop down is again too short. Do I need to add similar code but for #submain or something like that? Example is here:

    http://ganachecakesnbakes.com/product/basketball-cake/

    Thanks,
    Susan

    #4724
    mcksusan
    Participant

    How do I make the dropdown menu box taller? I adjusted some fonts and spacing because there was too much space on the page, but now my dropdown menus don’t display correctly. They are too short to display the text choices. See an example here:

    http://ganachecakesnbakes.com/shop/

    On the right side of the page there is a drop down that allows the user to sort the products listed by popularity, price, etc… But you can’t see the text in the dropdown.

    Thanks,
    Susan

    #4623

    In reply to: Hiding Nav

    Rabin Shrestha
    Participant

    Hi findonline,

    We have designed our theme such that navigation appears in mobile devices so that user can easily navigate to home by clicking on Navigation menu

    Rabin

    #4577

    In reply to: Zoom function on ipad

    Donna111
    Participant

    HI there
    Maybe you need to add an web page zooming section.They can easily change the viewing file size by zooming in or zooming out. Besides, apart from the common zooming functions, users can also display the entire source document image file within web viewer, or fit the target document file to the width of web viewer or view the current document image file at its original size.

Viewing 15 results - 631 through 645 (of 685 total)