Styled Themes
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Pure & Simple] Move mobile menu up to bottom of header photoHi Mirea91,
Its been long days, we are unable to hear from your side. Hope you have got your issue fixed.
Thanks
Forum: Themes and Templates
In reply to: [Pure & Simple] Thumbnail photo for blog excerpt?Hi deeza,
Add this code somewhere in content-archive.php template[Make sure you are customizing that template on child theme so your changes will not overwrite on theme update ] as per your requirement.
`<?php if ( has_post_thumbnail()) :
the_post_thumbnail();
endif; ?>`
Then You can simply set featured image on that particular post, which will display that images on your required testimonial page.Note: If you are not technically sound on wordpress , you need to take help from developer.
Thanks
Forum: Themes and Templates
In reply to: [Pure & Simple] Call to Action on Home Page onlyHi YvetteS,
For this we refer you to use jetpack widget visibility plugin by jetpack so you can show specific widgets on specific pages
@see for reference:
How to use jetpack widget visibilityThansk
Hi Jessica HappyChanter,
Thank you for your suggestion, we will surely amends this on near future.
Forum: Themes and Templates
In reply to: [Pure & Simple] HeaderHi there,
Please follow the following steps to fix your issue;
Go to Dashboard=> Appearance=> Customize=> Basic Setting=> And click in the Hide default content from theme=> Then save it.Thanks
Forum: Themes and Templates
In reply to: [Pure & Simple] Move mobile menu up to bottom of header photoHi there,
To achieve this you need to customize header template altering loading sequence of navigation menu and baner image.In header.php you will find this code
<?php get_sidebar( 'banner' ); ?>Just cut this code and placed just below this code
<?php get_template_part( 'partials/logo-group' ); ?>And finally you will be able to get navigation menu undernath the banner
Note: Please use header.php template of child theme, so your changes will not overwrite on theme update.
Thanks
Forum: Themes and Templates
In reply to: [Pure & Simple] social media icons in the headerHi frankpipia.ca,
To place social share icon on header please add following code somewhere in header.php template, as per your requirement
<div id="social-wrapper"> <?php get_template_part( 'partials/social-bar' ); ?> </div>
Note: Please customize header template of child theme, so your changes will not overwrite on theme update.
Thanks
Forum: Themes and Templates
In reply to: [Pure & Simple] TitleHi frankpipia.ca,
for making your title in two line you need to customize code of logo-group.php file. iF you are familiar with basic of codding then please follow this steps.
Make a child theme with partials folder. Copy logo-group.php file of parent theme and paste inside partials folder of child theme.
Then replace <?php echo esc_attr( get_bloginfo( ‘title’ ) ); ?> with following html elements
<p> Frank Pipia </p> <p> Drywall and Framing </p>Note: Please follow this procedure if you are familiar with basic coding otherwise you will be trouble. And doing this will disable customizer settig to change text of site title.
Here we are emphasizing to use child theme so your changes will not lost on theme update
Thanks
Forum: Themes and Templates
In reply to: [Pure & Simple] Theme UpdateThank you @frankpipia.ca.
@anonymous If you got any doubt don’t hesitate to contact us , we are happy to help youForum: Themes and Templates
In reply to: [Luminescence Lite] remove sidebar on posts pagesHi wladan,
Before customizing code, make sure you are customizing those template on child theme, so your changes will not lost on theme update.
And if you feels hard on coding then you can use jetpack widget visibility plugin.How to use jetpack widget visibility
Thank you madhusudan for your suggestion.
Thanks
Forum: Themes and Templates
In reply to: [Pure & Simple] Remove "category" from line under post titleHi There,
First copy this below functions and paste in to child theme functions.php file. Then find your string that need to be canged.
function puresimple_posted_on() { $time_string = '<time class="entry-date published" datetime="%1$s">%2$s</time>'; if ( get_the_time( 'U' ) !== get_the_modified_time( 'U' ) ) { $time_string .= '<time class="updated" datetime="%3$s">%4$s</time>'; } $time_string = sprintf( $time_string, esc_attr( get_the_date( 'c' ) ), esc_html( get_the_date() ), esc_attr( get_the_modified_date( 'c' ) ), esc_html( get_the_modified_date() ) ); $posted_on = sprintf( __( 'Published on %s', 'pure-simple' ), '<a href="' . esc_url( get_permalink() ) . '" rel="bookmark">' . $time_string . '</a>' ); $byline = sprintf( _x( 'by %s', 'post author', 'pure-simple' ), '<span class="author vcard"><a href="' . esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ) . '">' . esc_html( get_the_author() ) . '</a></span>' ); echo '<span class="posted-on">' . $posted_on . '</span><span class="byline"> ' . $byline . '</span>'; //displaying author and category in home page if(is_home()){ echo '<span class="category-name">'; echo ' '.__('Category:','pure-simple').'<span class="">'.' '.get_the_category_list( __( ', ', 'pure-simple' ) ).' </span>';} }Note: If you are familiar with basic of php coding then only try this code, otherwise you will be facing error. It will be better if you get help from developer.
Forum: Themes and Templates
In reply to: [Encounters Lite] Issue with Featured ImagesHi There,
Sorry for the late reply, but have you got the solution of your issue? if not then please let us know, we are happy to provide solution asap. And we are really sorry for the late reply. We hope you understand.
Thanks
Hi There,
You can use this plugin to add the custom css
As well as about the Smaller width 1200px, then it is default of the theme because when you make your site smaller then while you use the mobile phone it doesn’t looks nice as well as we didn’t have this feature in both free as well as the premium version of the theme. We hope you understand.
Thanks
Forum: Themes and Templates
In reply to: [Celestial - Lite] How to make post right sidebar narrowerHI there,
You can add this css in style.css file of child theme.
#st-right { margin-left: 50px; width: 100px; }You can change width and margin-left value as per your requirement.
Note: Please use child theme to add custom css so your changes will not be lost on theme update.
Thanks
Forum: Themes and Templates
In reply to: [Circumference Lite] Translate 'Continue reading' doesn't workHi there,
Fist you copy content.php from parent theme and paste it in to child theme and find out Continue Reading… string and replace with your own strings.
But we refer you the following way:
Our theme support multi language, its include .pot file inside language folder.Using this pot file you can translate it in to your own language using poedit
See this for reference : How to use poedit in wordpressThanks