Hi Tuck Leong,
Please Email your temporary username and password we will set revolution slider as in our demo. For documentation please view this below Url
http://www.themepunch.com/revslider-doc/slider-revolution-documentation/
Thank you!
Hi frantisek.funda,
First of all create a child theme. Create style.css file and add the below code in your style.css file.
/*
Theme Name: Ambition Pro Child Theme
Author: Self-Help WordPress User
Template: ambition
*/
@import url("../ambition-pro/style.css");
body,
input,
textarea,
.main-navigation a,
h1, h2, h3, h4, h5, h6 {
font-family: 'Lato', sans-serif;
}
Your child theme will be displayed. Activate your child theme.
Note: Please change above font family 'Lato', sans-serif to your own font-family.
Hope this may help you
Thank you!
Hi all,
Creating the same structure in the child theme will not over ride the parent theme. First of all you need to unhook the function and then customize the code. We will post a simple example how to unhook to functions:-
Create a two files styles.css and functions.php
Under style.css add this following code.
/*
Theme Name: interface Child Theme
Author: Self-Help WordPress User
Template: interface
*/
@import url("../interface/style.css");
Under functions.php file
unhook functions
// Unhook default Thematic functions
function unhook_thematic_functions() {
// Don't forget the position number if the original function has one
remove_action( ‘interface_404_content', ‘interface_display_404_page_content', 10 );
}
add_action('init','unhook_thematic_functions'); // removes the header content by using hook interface_header
add_action( ‘interface_404_content', ‘interface_child_display_404_page_content', 10 );
/**
* function to show the footer info, copyright information
*/
function interface_child_display_404_page_content() { ?>
<div id="content">
<header class="entry-header">
<h1 class="entry-title"><?php _e( 'Error 404-Page NOT Found', ‘interface’ ); ?></h1>
</header>
<div class="entry-content clearfix" >
<p>Thank you</p>
</div><!-- .entry-content -->
</div><!-- #content -->
<?php
}
If you are still unable to fix it then you need to hire a developer to fix it.
Thank you!
Hi Broz,
Login to our site with the same username and password that you have purchased the theme before. After login you will redirected to your account page there you can see the available download section. If there is no download section then please contact our sales team via Email.
Thank you!
Hi bas,
Could you Email Us your temporary username and password. We will look over it. Don’t forget to send this Forum Url too. Also we have visited to your site and your slider image is also not displayed in chrome and firefox too.
Thank you!
Hi bas,
Could you Email Us your temporary username and password. We will look over it. Don’t forget to send this Forum Url too. Also we have visited to your site and your slider image is also not displayed in chrome and firefox too.
Thank you!
Hi,
I do my blog myself, have for years, used Twenty Ten WordPress without problems. Just switched to Clear Retina as I loved the look. I use Visual Editor, as I don’t understand HTML very well, but am willing to learn.
This is what I got when I did a theme check.
WARNING: The theme uses the add_shortcode() function. Custom post-content shortcodes are plugin-territory functionality.
REQUIRED: The theme uses the register_post_type() function, which is plugin-territory functionality.
REQUIRED: get_bloginfo(‘url’) was found in the file functions.php. Use home_url() instead.
Line 807: $items .= ‘<li class=’default-menu’>‘.__( ‘Navigation’,’cleanretina’
Line 821: $output .= ‘<li class=’default-menu’>‘.__( ‘Navigation’,’cleanretina’
REQUIRED: get_bloginfo(‘url’) was found in the file cleanretina-metaboxes.php. Use home_url() instead.
Line 38: ‘label’ => __( ‘Default Layout Set in’, ‘cleanretina’ ).’ ‘.'<a href=”.get_bloginfo(‘url’).’/wp-admin/themes.php?page=theme_options’ target=’_blan
REQUIRED: bloginfo(‘url’) was found in the file functions.php. Use echo esc_url( home_url() ) instead.
Line 807: $items .= ‘<li class=’default-menu’>‘.__( ‘Navigation’,’cleanretina’ ).'<
Line 821: $output .= ‘<li class=’default-menu’>‘.__( ‘Navigation’,’cleanretina’ ).'<
REQUIRED: bloginfo(‘url’) was found in the file cleanretina-metaboxes.php. Use echo esc_url( home_url() ) instead.
Line 38: ‘label’ => __( ‘Default Layout Set in’, ‘cleanretina’ ).’ ‘.’‘
RECOMMENDED: Screenshot size should be 880×660, to account for HiDPI displays. Any 4:3 image size is acceptable, but 880×660 is preferred.
RECOMMENDED: No reference to add_theme_support( “title-tag” ) was found in the theme. It is recommended that the theme implement this functionality for WordPress 4.1 and above.
RECOMMENDED: No reference to add_editor_style() was found in the theme. It is recommended that the theme implement editor styling, so as to make the editor content match the resulting post output in the theme, for a better user experience.
Please help to correct these errors. Not sure what to do. Thank you.
Diana Stevan
Theme Horse
Obviously, this is your theme and you can do whatever you want with it. That said, there are several requests in this support section asking for an option to add recent blog posts to the home page (using the business template). Most of the big themes offer this option. So, hopefully, in the future, you’ll add this as an option (personally, I prefer the vertical option, but most themes seem to offer the horizontal version since it fits the row concept).
Finally, the workaround that I used was finding a plugin to accomplish this. For other Interface Pro users, the plugin is called, Special Recent Posts FREE. I just played with some of the settings until I found something that looked like what I was looking for. You can see it in use on my site at http://www.WIredToGrow.com. Hope that helps.
Bruce
Hi administrator,
just add this below code in style.css of your child theme
/*
Theme Name: interface Pro Child Theme
Author: Self-Help WordPress User
Template: interface
*/
@import url("../interface-pro/style.css");
Hope this may help you
Thank you!
Hi beth_almeida,
First of all create a child theme and paste the below code in your style.css
Add this below code in your style.css file
/*
Theme Name: Ambition Child Theme
Author: Self-Help WordPress User
Template: ambition
*/
@import url("../ambition/style.css");
@media only screen and (max-width: 1023px) {
.hgroup-right {
padding-right: 0;
min-width: inherit;
}
.search-toggle {
display: none;
}
/* Responsive Navigation */
.menu-toggle {
display: block;
background-color: rgba(0, 0, 0, 0);
font-size: 0;
border: 0 none;
padding: 0;
color: #666;
width: 30px;
height: 21px;
float: right;
margin-top: 19px;
cursor: pointer;
}
.menu-toggle:before {
display: block;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
font-size: 25px;
line-height: 0;
font-family: 'Genericons';
vertical-align: top;
content: '\f419';
}
.hgroup-right {
clear: both;
float: none;
}
.nav-menu {
display: none;
}
.toggled-on .nav-menu {
display: block;
}
.main-navigation {
float: none;
}
.main-navigation li {
position: inherit;
width: 100%;
border-top: 1px solid rgba(0, 0, 0, 0.1);
margin-left: 0;
}
.main-navigation a {
float: none;
padding: 10px 0;
height: inherit;
}
/* Dropdown */
.main-navigation ul li ul,
.main-navigation ul li:hover ul ul,
.main-navigation ul ul li:hover ul ul,
.main-navigation ul ul ul li:hover ul ul,
.main-navigation ul ul ul ul li:hover ul ul {
display: block;
}
.main-navigation ul li ul {
position: inherit;
top: 0;
width: inherit;
}
.main-navigation ul li ul li a,
.main-navigation ul li.current-menu-item ul li a,
.main-navigation ul li ul li.current-menu-item a,
.main-navigation ul li.current_page_ancestor ul li a,
.main-navigation ul li.current-menu-ancestor ul li a,
.main-navigation ul li.current_page_item ul li a {
padding: 10px 0 10px 15px;
}
.main-navigation ul li ul li a:hover,
.main-navigation ul li ul li:hover > a,
.main-navigation ul li.current-menu-item ul li a:hover {
background-color: inherit;
}
.main-navigation ul li ul li ul {
left: 0;
}
.main-navigation ul li ul li ul li a,
.main-navigation ul li.current-menu-item ul li ul li a,
.main-navigation ul li ul li.current-menu-item ul li a,
.main-navigation ul li.current_page_ancestor ul li ul li a,
.main-navigation ul li.current-menu-ancestor ul li ul li a,
.main-navigation ul li.current_page_item ul li ul li a {
padding-left: 21px;
}
}
Thank you!
Hi leeann.obringer,
Make sure that you have checked this button. View this below screenshot.
http://awesomescreenshot.com/0de55cm63a
If you are still facing the issue then Email Us with your temporary username and password. We will look over it what is something going wrong. Don’t forget to send this forum Url too.
Thank you!
Hi Benjamin,
Could you Email Us your temporary username and password, we will have a look on it. Don’t forget to send this forum topic too.
Thank you!
Hi Pilafa,
To remove the digit in the controller dots you have to set the same color for digit too.
Go to Appearance -> Theme Options -> Design Options Tab -> Custom CSS paste the following CSS code and Click on save all changes button:
#controllers a {
background-color: #404040;
color: #404040;
}
About slider issue please provide us the temporary username and password of your WordPress admin site via Email so that we can have a look into your issue.
Thank you!
Hi flippertony,
Its amazing. Could you Email Us your temporary username and password. We will have a look at once. And also don’t forget to send this forum Url too.
Thank you!
Unhook child theme error page 404.php
To create a child theme you need to create a two files style.css and funtions.php first. Just create a interface-pro child folder inside wp-content/themes. Under style.css file add this below code
/*
Theme Name: interface Pro Child Theme
Author: Self-Help WordPress User
Template: interface
*/
@import url("../interface-pro/style.css");
Under funtions.php you need to create your functions first unhook the functions and then only customize the code. Below is the example how to unhook function page 404.php, You do same for other too.
unhook functions
// Unhook default Thematic functions
function unhook_thematic_functions() {
// Don't forget the position number if the original function has one
remove_action( ‘interface_404_content', ‘interface_display_404_page_content', 10 );
}
add_action('init','unhook_thematic_functions'); // removes the header content by using hook interface_header
add_action( ‘interface_404_content', ‘interface_child_display_404_page_content', 10 );
/**
* function to show the footer info, copyright information
*/
function interface_child_display_404_page_content() { ?>
<div id="content">
<header class="entry-header">
<h1 class="entry-title"><?php _e( 'Error 404-Page NOT Found', ‘interface’ ); ?></h1>
</header>
<div class="entry-content clearfix" >
<p>Thank you</p>
</div><!-- .entry-content -->
</div><!-- #content -->
<?php
}
If you are still unable to fix it then you need to hire a developer to fix it.
Thank you!