losrack
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Storefront] reduce space nav/contentHi Stuart,
It did not work. I have tried so many things, included your code …
This is driving me nuts…
May be the space reserved for breadcrumbs .. how can I get rid of them?
Thanks for the help anyways …
I tried
.woocommerce-breadcrumb { display: none; }
Forum: Fixing WordPress
In reply to: excluded category from main shop – search problemIf any body wonders the solution is …
make this line …
if ( ! is_admin() && is_shop() ) {
into this …
if ( ! is_admin() && is_shop() && ! is_search() )
matter is settled.
Forum: Plugins
In reply to: [WooCommerce] excluded category from main shop – search problemTHANKS !!!! a lot Royho
you are the man!
Forum: Plugins
In reply to: [WooCommerce] excluded category from main shop – search problemin what line of the code? after , before , at the end?
Can you be more specific?
Thanks !!!
Forum: Fixing WordPress
In reply to: excluded category from main shop – search problemHi Susan,
Thanks for the help but sadly it did not work …
Any other ideas?
regards…
Forum: Fixing WordPress
In reply to: Remove page title form handheld navigationHi,
I have some basic knowledge, and I use developer tools to target stuff.
But none of what I’ve tried have worked.
Also I have tried all your code to no avail. It puzzled me why.
Thanks a lot any way!
Regards.
Forum: Fixing WordPress
In reply to: Remove page title form handheld navigationSo .. Are you sure this is for page title ?
I have had tested it with very small screens and it didn’t work…. But I will try your last code.
Again, I don’t want to hide the slide show. JUST the PAGE TITLE.
Exactly is the word “INICIO” which means in spanish “HOME” on hand held toggle page title.
It looks so big and takes too much space.
Forum: Fixing WordPress
In reply to: Remove page title form handheld navigationHi Tyler,
Sadly it didn’t work.
I guess it is CSS and not PHP right?
Any one can help please?
I just hate the way it looks and takes up so much space on mobile screens
Forum: Fixing WordPress
In reply to: Remove page title form handheld navigationHi Tyler,
I am afraid you did not understand what I want.
I just wanna get rid of PAGE TITLE on hand held, NOT the slide show.
Hope yiou can help
Thanks.
Forum: Fixing WordPress
In reply to: HTTP to HTTPSThank you so much
… mmm something is wrong when I do that.
I will contact my host and see what they say.
Forum: Fixing WordPress
In reply to: HTTP to HTTPSHi Peter,
Since your code looks a lot shorter than mine, I just wanted to know if I have to replace the code, insert it somewhere … I just don′t know
Also my urls in general settings after rewrite they keep going back to http when I check back or reload… is this a functions.php file thing?
Thanks a lot by the way
Forum: Themes and Templates
In reply to: [Storefront] handheld page title StorefrontWish I could upload a screenshot … don’t find how to upload it
Forum: Fixing WordPress
In reply to: Change handheld navigation title on storefront themeSure … here it is … just change ‘Menu’ for something else
/*Change handheld menu name */ function mobile_menu_name_2506490( $text ) { $text = 'Menu'; return $text; } add_filter( 'storefront_menu_toggle_text', 'mobile_menu_name_2506490' );
Forum: Themes and Templates
In reply to: [Storefront] handheld page title StorefrontHi James..
Thanks for your response.
Sadly it doesn’t work. I hope you can help me out since page titles are so huge when on handheld. I don’t know why they are coded so big.
regards
Forum: Fixing WordPress
In reply to: Change handheld navigation title on storefront theme… never mind I already found a solution …