Forum Replies Created
- AuthorPosts
Hash
KeymasterHi Lena,
It is not possible to use the tab function in the sub pages as well. And we have not used any plugin to generate the tab feature. It is the custom written code.
You can use some other plugin that allows you to add the tab via shortcode in post/pages.
If you want us to add this feature then you will have to ask for the paid customization support.
Thank you.
Hash
KeymasterCan you please let us know your website url?
Hash
KeymasterHi,
The tab won’t display multiple same page. Please make a new page and then link those page to the new tab. Do not link multiple page to the same tab.
Thanks You.
Hash
KeymasterHi,
The setting “static” in the frontpage option shows the default home page layout as in our demo. Do you want to show blog in your home page?
Hash
KeymasterHi,
Check this link. This should give a fair bit of idea
You need to check the customizer.php file to find our the theme mod for the slider and front-page.php to edit the code.
Hash
KeymasterHi,
You need to do some coding to make the slider caption translatable via customzer. If you have some knowledge in PHP then i can give you the idea on how to do it. If you have no idea about it then you can ask us for a paid support.
Thanks
Hash
KeymasterHi,
Please check this tutorial http://www.wikihow.com/Add-Read-More-to-Wordpress
It should help you to show expert instead of full post in the blog page.Hash
KeymasterSorry, It is not possible with the available feature. But is possible with paid customization if you want.
Hash
KeymasterHash
KeymasterHi,
The content in the tab does not highlight as in the inner pages. If you want to highlight the link the tab area then add the below CSS Code using some Custom CSS plugin.
.sq-tab-content a { color: #5bc2ce}
Hash
KeymasterHi,
now in this articles ) the links appear like in your demo maybe it was only a question of time, while in the tab section of the homepage where i have inserted a page called CATEGORIE TEMATICHE they are not highlighted )Thank you very much for your kind collaboration,
Elisabetta
Hash
KeymasterPlease check your email.
Hash
KeymasterThank you. You can let us know if you have any further problem.
Hash
KeymasterYou should change the front-page.php file. There are lots of code and i am not sure that you would be able to find the code.
Basically the theme is designed to add the page and link to detail page. If you want to link the category page, then it requires some complex coding. We can do it for paid customization if you want.
Hash
Keymaster@elisabetta_gatti can i check the page where you added the link? I would then find out the problem why it is not appearing as in our demo.
@patri_admin you can use this plugin to add the code https://wordpress.org/plugins/custom-css-js/ or you can go to Appearance -> Editor and then open header.php file and paste the code just before tag.
Hash
KeymasterOk, no problem for the feature sectin I will find another solution.
About the url, I’ve seen from the demo how it should appear, so I’ve updated the theme and i have tried to insert a new link in an article but the visualisation is alway the same….. sorry for the question that maybe it’s to esay … but i have to do something specific to change the visualisation of the link?Thanks in advance
Hash
KeymasterHi,
Sorry, the featured section only allows you to add the pages. You can not add the post for the featured section. But we can customize if for the paid customization if you want.
The latest version had this issue fixed.You can check this url on how the link looks with the latest version of the theme http://demo.hashthemes.com/square/about-us/
Hash
KeymasterThank you very much for your help!
Can i ask you another couple of things? Can I insert in the feature section of the homepage some articles in steand of pages? in addiction, how can I change the visualization of link in an article? I’m able to insert and hyperlink in the text but, considering that it became blu only when you are on it, is not quite visibile!Thanks in advance,
ElisabettaMay 10, 2016 at 12:07 am in reply to: Make the text in Featured Section a link. Just like the little + sign #362Hash
KeymasterOpen front-page.php file and find for the code
<div class="sq-featured-post <?php echo 'sq-featured-post'.$i; ?>"> <div class="sq-featured-icon"><i class="fa <?php echo esc_attr( $square_featured_page_icon ); ?>"></i></div> <h4><?php the_title(); ?></h4> <div class="sq-featured-excerpt"> <?php if(has_excerpt()){ echo get_the_excerpt(); }else{ echo square_excerpt( get_the_content(), 120); }?> </div> <?php if($square_enable_featured_link){ ?> <a href="<?php the_permalink(); ?>" class="sq-featured-readmore"><i class="fa fa-plus-square-o"></i></a> <?php } ?> </div>
and replace it with
<div class="sq-featured-post <?php echo 'sq-featured-post'.$i; ?>"> <a href="<?php the_permalink(); ?>"> <div class="sq-featured-icon"><i class="fa <?php echo esc_attr( $square_featured_page_icon ); ?>"></i></div> <h4><?php the_title(); ?></h4> <div class="sq-featured-excerpt"> <?php if(has_excerpt()){ echo get_the_excerpt(); }else{ echo square_excerpt( get_the_content(), 120); }?> </div> </a> <?php if($square_enable_featured_link){ ?> <a href="<?php the_permalink(); ?>" class="sq-featured-readmore"><i class="fa fa-plus-square-o"></i></a> <?php } ?> </div>
Please be careful on replacing the code else you can leave you site blank with PHP error.
May 9, 2016 at 10:44 pm in reply to: Make the text in Featured Section a link. Just like the little + sign #360Hash
KeymasterHi,
Basically the theme is designed to work as it is now which is to open the detail page clicking on the small plus icon.
If you want to make the title clickable or the whole block clickable then you will have to make edit in the code.
We can guide you if you are comfortable with the code. Or you can even ask us for paid customization which would cost you only $15
- AuthorPosts