ab
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Pure & Simple] Show right hand widgets on all pagesI don’t know how I missed that.
Thanks alot.Forum: Themes and Templates
In reply to: [Pure & Simple] Remove "category" from line under post titleadding that code into the functions file gives me an syntax error, can you tell me exactly what I need to copy into the functions file and where?
This is the full text of my functions file<?php // Exit if accessed directly if ( !defined( 'ABSPATH' ) ) exit; // BEGIN ENQUEUE PARENT ACTION // AUTO GENERATED - Do not modify or remove comment markers above or below: if ( !function_exists( 'chld_thm_cfg_parent_css' ) ): function chld_thm_cfg_parent_css() { wp_enqueue_style( 'chld_thm_cfg_parent', trailingslashit( get_template_directory_uri() ) . 'style.css' ); } endif; add_action( 'wp_enqueue_scripts', 'chld_thm_cfg_parent_css' ); remove_all_filters('wp_title'); // END ENQUEUE PARENT ACTION function load_fonts() { wp_register_style('et-googleFonts', 'https://fonts.googleapis.com/css?family=Cinzel|Cinzel+Decorative'); wp_enqueue_style( 'et-googleFonts'); } add_action('wp_print_styles', 'load_fonts');
thank you for your help
Forum: Themes and Templates
In reply to: [Pure & Simple] Remove "category" from line under post titleHi
Thanks for your reply, so I should paste this code..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>'; }
from template-tags.php into the child theme function file,
then delete this code//displaying author and category in home page if(is_home()){ echo '<span>'; echo ' '.__('Category:','pure-simple').'<span class="">'.' '.get_the_category_list( __( ', ', 'pure-simple' ) ).' </span>';} }
from the template-tags.php file ?
Hi shrinivas
I’m note sure, maybe check your permalinks?
sorted this by just putting /pagename/ instead of full url
Forum: Plugins
In reply to: [Easy PayPal Shopping Cart] some questionI’ll keep an eye out for the update.
Regards
AhmedForum: Plugins
In reply to: [Easy PayPal Shopping Cart] some questionHi Scott
Thank you for the response.
Are there any plans to add stock control to this plug in?Regards
AhmedI am having the same problem, I have also tried the code here https://pastebin.com/bkaHFiqf which was posted in another thread but it doesn’t do anything.
any ideas?
Forum: Themes and Templates
In reply to: [Pure & Simple] Remove "category" from line under post titleI’ve just realised the reason why deleting the code does nothing is because for some reason the site is still using the template tags file from the parent theme. I don’t know why the one I’ve copied into the child theme directory isn’t being used, is there something else I need to do?
Forum: Themes and Templates
In reply to: [Pure & Simple] Remove "category" from line under post titleI’ve found this bit of code in the template tags pho file which I think is responsible, but deleting it does nothing. Any ideas?
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>'; echo ' '.__('Category:','pure-simple').'<span class="">'.' '.get_the_category_list( __( ', ', 'pure-simple' ) ).' </span>';} } endif;
Forum: Themes and Templates
In reply to: [Pure & Simple] make page full width & no widgets on postsfound a way around it by changing get sidebar from right to left
Forum: Themes and Templates
In reply to: [Pure & Simple] make page full width & no widgets on postsI’ve managed to make the posts full width by changing
<?php $bloglayout = get_theme_mod( 'blog_layout', 'blogright' );
to
<?php $bloglayout = ('blogwide' );
in the single.php filebut the widgets are still shown at the bottom of the page, anybody know how I can completely remove them from the single posts?
Forum: Themes and Templates
In reply to: [Pure & Simple] change hand icon next to newer/older postsThanks alot mate
Forum: Themes and Templates
In reply to: [Pure & Simple] change hand icon next to newer/older postssorry I misunderstood when you meant to change the unicode
I’ve just changed it to.fa-hand-o-left:before { content: "\f060"; color: red; }
in the css style sheet and that worked.
Thank you so much for your help!Forum: Themes and Templates
In reply to: [Pure & Simple] change hand icon next to newer/older postsI copied that code as is and it turned the left hand red, I changed it to `.fa-arrow-left:before {
content: “\f0a5”;
color: red;
}`
and it turned it back to a black hand