Hi Erik,
Just send us your temporary username and password for your site here https://www.themehorse.com/contact-us/free-support/ and we will set dummy data as in our demo for you and you can change it later.
Rabin
Hi,
First time wordpress user. I’ve recently purchased Attutide pro and am trying to work out how to remove the navigation bar.
I have set the home page as the business template page which automatically creates a tab in the navigation bar. However i wont be needing a navigation bar as i won’t be having any pages & my custom header is a link back to the home page. I hope that makes sense, i’d appreciated any guidance or advice. Thanks in advance!
Well, it seems OK after I recursively changed the owner of /var/www to www-data user, which by default runs apache processes.
Still I’m not quite sure if it’s a secure way.
Hi!
I was trying to upload Clean Retina Pro theme zip file via WordPress console, and get the error message saying “Unable to create wp-content/uploads/year/date” folder because of incorrect permissions inherited from parent folder.
I wonder which user:group permissions must be set in my Ubuntu /var/www folder where WordPress engine is set up?
Actually I can upload a theme to wp-content via WinSCP any time, but I want it to work in a nice way, via WordPress console.
Thanks!
@hapimag Many people usually don’t create language file to use it. They write all the content in other language and just want to change the read more as well to their language. Thus, we made this available in our pro version.
If you use the free version you can change the ‘read more’ text is also translatable via poedit. Generally, we make our themes translation ready. Some of our users provide us the language files then we include it into the our theme so others also can use it. Till now we have not got the translation file for our pro theme.
Hi nsteiner,
Send us your temporary username and password here https://www.themehorse.com/contact-us/free-support/ and we will set dummy gallery for you. You can later replace it with your own images
Rabin
Hi Keith,
Send us your temporary username and password for your site here https://www.themehorse.com/contact-us/free-support/ and we will set a dummy gallery and later you can replace it with your own.
Rabin
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
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
@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 🙂
@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() { ?>
@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.
@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!
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!
@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.