silico26
Forum Replies Created
-
is this resolved by simply uploading the photos in a specific order? that doesn’t seem very practical.
Forum: Themes and Templates
In reply to: Simple Catch theme – linking custom header logo?@ yogi, good eye, now works perfectly. thank you! final code in my custom css:
h1#site-title a img { float: left; height: 504px; max-height: 185px; padding-right: 0px; width: 550px; }
Forum: Themes and Templates
In reply to: Simple Catch theme – linking custom header logo?@ andrew – i added
display: inline-block
to my custom css, so it looks like this
h1#site-title a img { display: inline-block float: left; height: 504px; padding-right: 0px; width: 550px; }
didn’t seem to fix the issue. did i do it correctly?
Forum: Themes and Templates
In reply to: Simple Catch theme – linking custom header logo?thanks for your reply. i inserted this code into my custom css and it made the top half of the image appear linked perfectly… the bottom half however, is not a link. i tried adjusting the height from 204 to 500, but still stayed the same. strange!
Forum: Themes and Templates
In reply to: Simple Catch theme – main body custom link color hover color?perfect, thanks yogi!
Forum: Themes and Templates
In reply to: iphone is displaying phone numbers in black text and not blue?i just updated my main body link colors and now the iphone links appear in that same color – meaning the apple browser software no longer defaults phone numbers as blue links. awesome!
Forum: Themes and Templates
In reply to: Simple Catch theme – main body custom link color hover color?Thanks for your reply. I’m trying to change the main body links. They are currently black, so they blend in with the regular body text. On the home page there is a link that says “Contact us” and on the About page there is a link that says “get in touch”. Thanks
Forum: Themes and Templates
In reply to: Simple Catch theme – main body custom link color hover color?unless anyone has any ideas i think i’m just going to let this one go and settle for the defaults/whatever custom css I have that’s possibly overwriting. thanks
Forum: Plugins
In reply to: contact form 7… increasing the default 1mb uploadUnless anyone has any ideas I think I’m just going to put some text that says “1MB limit” above the photo upload option – at least than my customers should have a good idea of what’s going on.
@ luichy, that seemed to work for me!
Forum: Themes and Templates
In reply to: iphone is displaying phone numbers in black text and not blue?screenshot of site on iphone browser:
https://i589.photobucket.com/albums/ss336/ryanpatrickoconnor/photo.jpg
@silico26: I mean you need to clear the cache by delete_transient which you don’t need to code it but can change any setting fields in Slider option from your WordPress Dashboard otherwise you have to wait for 24 hours to clear the cache.
i guess i am too much of a noob to understand what you’re saying, but i appreciate you trying. the fact that the link was removed after i uploaded my tweaked php file makes me think that it’s not a matter of the cache needing to be cleared but an error in the code somewhere
interesting luichy, mine removed the link altogether, no link to the home page.
@luichy were you able to add a custom link via sakin’s instructions above?
thanks for your reply sakin. i removed the link, but am unable to change it to a custom link. did i follow your directions correctly? i am mostly confused about the cache part you mentioned. here is what i did:
i took the simplecatch_functions.php file (located here:
wp-content/themes/simple-catch/functions/simplecatch_functions.php)and pasted it into a child theme directory (wp-content/themes/simple-catch-child)
and i removed this part of it:
( get_permalink() ) . '">' . sprintf( __( '%s', 'simplecatch' ), esc_attr( $more_tag_text ) ) . '</a>';
and replaced it it with this:
( $simplecatch_sliders .= '<a href="https://www.google.com" title="Permalink to '.the_title('','',false).'">'; ) . '">' . sprintf( __( '%s', 'simplecatch' ), esc_attr( $more_tag_text ) ) . '</a>';
when i reuploaded the file to the child theme directory, it effectively removed the link, but did not add the example google link. maybe this is because i did not follow or understand this part you mentioned below?
After you make the change, you need to clear the cache set by set_transient( ‘simplecatch_sliders’, $simplecatch_sliders, 86940 );So, to clear the cache you can change any value in Slider option from your WordPress Dashboard.