Forum Replies Created
- AuthorPosts
Hash
KeymasterI think this the the plugin that you are looking for
Hash
KeymasterSorry, the theme only allows to add 4 team member. However we add more team member by customizing the theme for paid support if you want.
Hash
KeymasterHi,
Add the below php code at the end of the function.php file or use some plugin that allows to add custom PHP code
add_filter( 'gettext', 'change_readmore_text', 20, 3 ); function change_readmore_text( $translated_text, $text, $domain ) { switch ( $translated_text ) { case 'Read More': $translated_text = __( 'Read More Translation', 'total' ); break; } return $translated_text; }
change Read More Translation to your text
Hash
KeymasterAdd the CSS below using some custom CSS plugin to fix the margin issue.
I think this should have been a simple task for the one who can change the theme color. Any way i have provided the CSS below
body:not(.home) #ht-content{margin-top:50px;}
PS: It would have been good if you had not change the footer credit
Hash
KeymasterSorry, the theme only allows you to add 2 Call to Action button.
We will have to customize the theme to add this feature. If you really require the third button, you can ask for paid customization which would only cost $15
Hash
KeymasterSorry, there is no option for it. It will require additional coding.
Hash
KeymasterCan you please mention your website url so that we can give you accurate solution rather than possibles one.
Hash
KeymasterHI,
There is no option to make the archive page wider. You can only change the layout for the post and pages only.
Hash
KeymasterTo reduce the size of the slider you need to crop your images to smaller height. In this way you can decrease the slider height.
And there is no option to enable the slider in other pages. We will modify the code to add this option.
Hash
KeymasterGreat to know that our old thread helped you to fix the problem.
Hash
KeymasterAdding more menu items will cause the additional menu to move in next line. There is not solution for it.
You need to arrange the menu items in sub menu so that there aren’t more menu items.
I see you have increased the container width which is also a good technique to get more menu items in a single line.
Additionally use the below css to decrease the with of the logo and increase that of menu
#sq-site-branding{width:20%} #sq-site-navigation{width:80%}
October 15, 2016 at 4:54 pm in reply to: Disabling hard crop in woocommerce setting not possible #816Hash
KeymasterHi,
You need to modify the code in order for the settings to work. You need to remove some code from inc/woo-functions.php file
Remove the code
add_action( ‘init’, ‘sq_update_woo_thumbnail’);
in the line number 96Check this file for reference.
Once you remove the code, the settings for the woocommerce cropping will work. But please make sure your use proper image size else it may break the design.
Hash
KeymasterHi,
Sorry, there is no option to add the image in the page header. We need to customize the code for it. We can do it for paid customization if you want.
To remove the page header entirely, here is the css code.
.ht-main-header{display:none}
Hash
KeymasterHi,
You can add the video in the About Us section. The right image can be replaced by the widget. You can add the embed code of the video in the widget to show your video.
Also we do provide paid customization support if you want to add the video in any specific section of the website or even create a new video section.
Hash
KeymasterYes, the footer is editable expect the one that contains the credit link.
To edit the footer, go to Appearance -> Widget page
Hash
KeymasterSorry, the theme does not supports link in the slider text. But we can do it for paid customization if you wish. We can add you a button with desired button text and link.
Hash
KeymasterHash
KeymasterThank you for reporting the problem. The solution has been found and here it is http://hashthemes.com/support/topic/space-key-problem-in-forms-with-hashone/
Hash
KeymasterHi,
The problem has been detect. It was due to one of the jquery script used for the smooth scroll. We will fix this issue is the next update release.
For now you can replace the code of SmoothScroll.js for both the theme with the code in the below link. This will fix the spacebar issue.
Hash
KeymasterThe way it work is that it will generate a class named sq_right_sidebar, sq_left_sidebar, sq_no_sidebar, sq_no_sidebar_condensed on the body based on the layout that you select at the end of the page editor.
If you search with the above class name in the style.css, you should be able to find all the css relating to them.
- AuthorPosts