rotoblueprint
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Customizr] Title of Feature Pages above the imagesone more try
Forum: Themes and Templates
In reply to: [Customizr] Title of Feature Pages above the imagesAny help here
Forum: Themes and Templates
In reply to: [Customizr] Logo Broken on homepagedisregard, it looks like it is broken again for everything. I switched from bluehost to hostgator a few weeks ago….something funky is going on
Forum: Themes and Templates
In reply to: [Customizr] Logo Broken on homepageOddly, it is sorted out on all browsers except Safari.
Dude, you are awesome. Thank you so much.
Forum: Themes and Templates
In reply to: Color meanings in codeI hear ya, but my question is more general. My hope is to not have to post every single time I run into a snippet. This is merely the example I am working through right now.
Forum: Themes and Templates
In reply to: Color meanings in codeThanks Andrew…I have at least gotten that far. I know where to put it and how to add to my child theme BUT for this example, I am trying to change the title of categories.
Right now, if you go to know of my categories it will say “Category Archives: Then the Category’s Name.” I want to get rid of the “Category Archives” and have it simply state the name of the category.
add_filter('tc_category_archive_title' , 'my_cat_title'); function my_cat_title($title) { return 'My archives title for : '; }
Instead of saying “Category Archives: Batter’s Eye,” I would like the category to only state the category, i.e. “Batter’s Eye”
Will the snippet above take care of that? EF, you mentioned jut using return ‘ ‘; how exactly would that look with the above code? I played with it, but couldnt get it quite right.
Forum: Themes and Templates
In reply to: [Customizr] So close…functions.php…just a little more helpOh. My. Goodness. I know my problem are FAR from over, but that just did something. I dont know why
add_filter('tc_logo_text_display', 'your_logo_display'); add_filter('tc_logo_img_display', 'your_logo_display'); function your_logo_display($output) { return str_replace('brand span3', 'brand span10 offset1', $output, -1); }
Didnt work, but that just did something.
Thank you both again.
Forum: Themes and Templates
In reply to: [Customizr] So close…functions.php…just a little more helpI simply copied and pasted below <?php …white screen:(
I tried to upload through Cyberduck and then tried doing it through the editor in WP.
The only time it seems I dont get a white screen is when the function.php file only has:
<?php
I am doing something very wrong.
Forum: Themes and Templates
In reply to: [Customizr] So close…functions.php…just a little more help@rdellconsulting I have read that and come across quite a few of yours and EFs comments….super helpful! That said, I am still having a problem seeing results from changes I’ve made in functions.php.
My steps so far, I have created the folder customizr-child….all I have in it is the style.css file with no added code and the functions.php file (which I have to keep deleting when my website goes white). I have uploaded through FTP software and through the C Panel to see if it makes a difference. Unfortunately, nothing. I feel like I am missing something sort of major.
I am attempting to have the featured pages link to categories…here’s what I have
<?php add_filter('tc_fp_link_url' , 'my_custom_fp_links', 10 ,2); function my_custom_fp_links( $original_link , $fp_id ) { //assigns a custom link by page id $custom_link = array( //page id => 'Custom link' 101 => 'https://www.rotoblueprint.com/?cat=5', 93 => 'https://www.rotoblueprint.com/?cat=7' ); foreach ($custom_link as $page_id => $link) { if ( get_permalink($page_id) == $original_link ) return $link; }
@electricfeet…I changed to the 101 and 93 because those where the page=ids that corresponded with the pages they link to in the them customization. Is my mind in the right place on that?
Is there a very simple “function” you would recommend I try. Something that I could put in the function.php file and would most certainly work and if it doesnt I am doing something majorly wrong.
Crazy in dept to both you guys. I read your comments EVERYWHERE and some are a decade old! Thank you!
Forum: Fixing WordPress
In reply to: Removing the word "archives" in categoriesresolved
I am not new to forums, but new to the WP world….getting familiar and trying to find the right home for things….with a new subtle prompts…im getting ahold of it:)
I am not new to forums, but new to the WP world….getting familiar and trying to find the right home for things….with a new subtle prompts…im getting ahold of it:)
Forum: Themes and Templates
In reply to: [Theme: Customizr] How to change link from Pages to categoriesI am not new to forums, but new to the WP world….getting familiar and trying to find the right home for things….with a new subtle prompts…im getting ahold of it:)