Forum Replies Created
-
AuthorPosts
-
Theme Horse Support Team
KeymasterHi woodlandsp,
You want the location of this file then here it isGo to theme folder -> library -> functions -> functions.php under this functions
function attitude_scripts_styles_method() {
But if you make any changes then first make child theme and unhook functions as and then only edit the code. I have just pasted a sample to unhook the functions.
Thank you!Theme Horse Support Team
KeymasterHi David,
Here is the sample how to unhook the functions.
Eg:-
unhook functions // Unhook default Thematic functions function unhook_thematic_functions() { // Don't forget the position number if the original function has one remove_action( 'attitude_404_content', 'attitude_display_404_page_content', 10 ); } add_action('init','unhook_thematic_functions'); // removes the header content by using hook attitude_header add_action( 'attitude_404_content', 'attitude_child_display_404_page_content', 10 ); /** * function to show the footer info, copyright information */ function attitude_child_display_404_page_content() { ?> <div id="content"> <header class="entry-header"> <h1 class="entry-title"><?php _e( 'Error 404-Page NOT Found', 'attitude' ); ?></a></h1> </header> <div class="entry-content clearfix" > <p>Thank you</p> </div><!-- .entry-content --> </div><!-- #content --> <?php }
This is for page 4o4.php
Thank you!
Theme Horse Support Team
KeymasterHi Grafixer,
I think there is a plugin which helps you to add meta keywords for better SEOhttps://yoast.com/wordpress/plugins/
Once you add the meta keyword or description it will be saved on the dashboard so you should not removed it. If you need other than this then you need code customization for it.
Thank you!
October 1, 2014 at 9:24 am in reply to: WordPress Dashboard STILL having issues after updating to 1.7 #16892Theme Horse Support Team
KeymasterHi Pabela,
There may be some plugins conflict. At first please deactivate all the plugins and check it once. Whether it works or not. If still there is some problem then just create a new post and post in this forum.
Thank you!
Theme Horse Support Team
KeymasterHi moggone,
If you want to change the size of the image then you need code customization for it. We recommended not to change the code because if you change the code then while updating to our new version all your customisation code will be lost.Just go to the theme folder -> functions.php
Can you see this ?
// Add Interface custom image sizes add_image_size( 'featured', 670, 300, true );
You change the size into any size you want. The above add_image_size cuts the image in 670 * 300 px. But every time you update to our theme you need to change the size of image.
Thank You!
Theme Horse Support Team
KeymasterHi contact,
If you need code customisation then We recommended not to change the code because if you change the code then while updating to our new version all your customisation code will be lost. So better make child theme and first unhook the functions and the edit the code.
http://codex.wordpress.org/Child_Themes
The file is inside interface (theme folder) -> inc -> structure -> content-extension.php
Thank you!
Theme Horse Support Team
KeymasterHi moggone,
You need code customization for it. We recommended not to change the code because if you change the code then while updating to our new version all your customisation code will be lost. So better make child theme and first unhook the functions and the edit the code.http://codex.wordpress.org/Child_Themes
Thank you!
Theme Horse Support Team
KeymasterThat’s great arshi4you
Thank you!
Theme Horse Support Team
KeymasterThat’s great arshi4you, Thanks for helping us. yes exactly heidifriis79 go to Theme Options > Featured Post/Page Slider > put the page id in given fields (by default there are 4 fields, and you are done!
Thank you!
Theme Horse Support Team
KeymasterHi arshi4you,
This is the WordPress feature so we cannot even modify and change it. There may be certain plugins. If i found any of then then i will let you know.Thank you!
Theme Horse Support Team
KeymasterHi otwds,
This is not possible in our theme. So you need code customization for it. The file is inside theme folder -> inc -> structure -> widgets -> interface_widgets.php with interface_service_widget class. From this class you can change the code but We recommended not to change the code because if you change the code then while updating to our new version all your customisation code will be lost.Thank you!
October 1, 2014 at 9:04 am in reply to: Reposition Gallery Thumbnails for Portrait Orientation? #16884Theme Horse Support Team
KeymasterHi Kathleen,
Just upload the image size 474 * 342 . Then you don’t need to re crop the image. This image size will work fine for galleryThank you!
Theme Horse Support Team
KeymasterHi Richard,
We don’t have this newest blog post to display the recent work. We have only the recent work to be display in our business layout. Just go to the dashboard -> appearance -> widgets -> and after this drag the widgets to the business page section bar. Then you will be able to select the recent work according to your need. But latest work to be displayed is not available in our theme. For this you need code customization or you need to hire a developer to fix it.Thank you!
Theme Horse Support Team
KeymasterHi Richard,
Could you please send the site URL ? We will try to help you
Thank you!Theme Horse Support Team
KeymasterHi Eva,
We also have not implemented it still in our theme. The file is inside the interface folder -> inc -> structure -> header-extension.phpYou need to identify the code and just create the child along with functions.php file and first unhook the functions and the edit the code.
http://codex.wordpress.org/Child_Themes
IF you will be unable to fix it then you need to hire a developer to fix the issue.
Thank you!
-
AuthorPosts