satrntgr
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Customizr] Categories and Tags Not WorkingI’ve tried adding categories and a new menu, and it doesn’t save. I’m doing this through the Customizr editor. Any ideas?
Forum: Fixing WordPress
In reply to: Categories and Tags Not WorkingI use a different backup, but I’m scared to death to write over the stuff with the new WP download. ??
Forum: Themes and Templates
In reply to: [Customizr] Categories and Tags Not WorkingNot sure if it’s customizr, but when I try to add a category (or a tag) it says: “Could not insert term into the database” ??
Forum: Fixing WordPress
In reply to: Categories and Tags Not Working@songdogtech – they tried to restore and had to make a new one. I was trying to update MySQL and PHP and the guy created a whole new database. However my blog started posting on that new one and the old one, so everything was screwed up. They put everything back together, mostly, but my new header and menu was on the database that was missing posts, etc. AAAHHH!!
Forum: Themes and Templates
In reply to: [Theme: Customizr] Remove Post TitleI want the title on the post page gone. The main page that shows my post needs the title. However, after you’ve clicked on a post, I do not want the title of it at the top. I put my own at the top of my blog post and don’t need two of them.
Forum: Themes and Templates
In reply to: [Theme: Customizr] Remove Post TitleI’m using Customizr at https://tigerstrypes.com
Forum: Themes and Templates
In reply to: [Customizr] TC_Post_Metas Error…AGAIN!!!Thanks!
Forum: Themes and Templates
In reply to: [Customizr] TC_Post_Metas Error…AGAIN!!!That worked, thanks!! What was the difference in those?
Forum: Themes and Templates
In reply to: [Customizr] TC_Post_Metas Error…AGAIN!!!This is the data in my child theme – what should I edit:
<?php //Opening PHP tag
// Custom Function to Include
function favicon_link() {
echo ‘<link rel=”shortcut icon” type=”image/x-icon” href=”/favicon.ico” />’ . “\n”;
}
add_action( ‘wp_head’, ‘favicon_link’ );
//we hook the code on the __before_body hook, which is executed before the <body> rendering.
add_action (‘__before_body’ , ‘move_single_post_metas’);function move_single_post_metas() {
//checks if we are displaying a single post. Returns false if not.
if ( !is_single() )
return;
//we remove the original action hooked on ‘__post_metas’. tc_post_metas action is a method of the TC_post_metas class
//We can access the instance of this class with a static property of this class that is a self instance.
remove_action ( ‘__after_content_title’ , array( TC_post_metas::$instance , ‘tc_post_metas’ ));//we add the tc_post_metas action on a the __after_loop (check index.php file to see where this hook is called in the code)
add_action (‘__after_loop’ , array( TC_post_metas::$instance , ‘tc_post_metas’), 10);//Additional action to display an hr separator between content and metas.
//We use the priority parameter to determine the rendering order of the action
add_action (‘__after_loop’ , ‘display_hr’, 0);//this is a nested function (function in another function), allowed with PHP.
function display_hr() {
?>
<hr/>
<?php
}
}
//Closing PHP tagForum: Themes and Templates
In reply to: [Customizr] Footer Taking Forever To LoadI guess it’s something to do with G+. Not sure if that’s right or not. I was told to input iframe[id^=”oauth2relay”] { left: auto !important; right: -100px !important; } into my html, so hopefully that will fix it.
Forum: Themes and Templates
In reply to: [Customizr] Footer Taking Forever To LoadI see it, but it’s not anything I added.
Forum: Themes and Templates
In reply to: [Customizr] Footer Taking Forever To LoadI don’t have an iframe above the footer – only blog posts.
Forum: Themes and Templates
In reply to: [Customizr] Footer Taking Forever To LoadI did clear it all – that’s why I’m putting the question here. Can’t think of anything else to try. ?? I figure it’s something with the Customizr footer, but I can’t find any issues.
Forum: Themes and Templates
In reply to: [Customizr] Footer Taking Forever To LoadI don’t believe I’ve added any js to any of those.
Forum: Themes and Templates
In reply to: [Customizr] Footer Taking Forever To LoadI did disable them all and it still did it. Even ran a scan and found nothing. ??