Forum Replies Created
-
AuthorPosts
-
Thanks! Got it fixed.
I tried, Rikard. But that’s a bit out of my wheelhouse. I know exactly enough CSS to be dangerous. :)
(And most of what I do know I learned from reading help tickets in this forum. LOL)
I was able to remove it with this:
.avia-shadow {
box-shadow: none;
}Any idea why the Full width slider would have a shadow on it?
Actually, maybe I jumped the gun there. Fixing that issue doesn’t seem to resolve my problem. I have borders between my grid rows, even though I have turned them all off. Any idea why?
September 25, 2017 at 2:35 pm in reply to: Rename the shop breadcrumb on single product pages? #856482So, I tried this and I realized I lost the hyperlink. I saw a few other posts about how to add that in, but it seems quite complicated. Then, I stubmled across this:
https://kriesi.at/support/topic/rename-blog-title-and-breadcrumb/Which has this code in it:
// Change Breadcrumbif(!function_exists(‘avia_modify_blog_breadcrumb’))
{
function avia_modify_blog_breadcrumb($trail)
{
foreach($trail as $key => $data)
{
$search = ‘SEO Tools to Equip Your Business – Blog’;
if(strpos($data, $search) !== false)
{
$data = str_replace($search, “Blog”, $data);
$trail[$key] = $data;
}
}
return $trail;
}add_filter(‘avia_breadcrumbs_trail’,’avia_modify_blog_breadcrumb’);
}Seemed like just what I needed. I edited as so:
if(!function_exists(‘avia_modify_woocommerce_breadcrumb’))
{
function avia_modify_woocommerce_breadcrumb($trail)
{foreach($trail as $key => $data)
{
$search = ‘Shop’;
if(strpos($data, $search) !== false)
{
$data = str_replace($search, “Room Categories”, $data);
$trail[$key] = $data;
}
}
return $trail;
}}
add_filter(‘avia_breadcrumbs_trail’,’avia_modify_woocommerce_breadcrumb’);
}But, it still isn’t working. Did I go down a rabbit hole with this code? (I know just enough to be really, really dangerous.) LOL
September 21, 2017 at 8:10 am in reply to: Rename the shop breadcrumb on single product pages? #854656Victoria,
Thanks for the quick response! That code actually changes the last element in the breadcrumb trail. I want to change the 2nd. How would I go about that?
When I implement it, I get this:
You are here:
Home / Shop / Focus Room Presentation Only / Whatever You NeedI’d like the “Whatever You Need” to replace the “Shop” in the trail.
Thanks!
DanThanks for this!
We actually figured it out.Update: I fixed the first part. I totally forgot to take off the padding in the cell. Still need help on the second part though.
This has been resolved.
Thank you.
Hi Victoria! Sorry — we got this all worked out. We changed it up to use a Layer Slider instead of the full width slider and all is right in the world now. You can mark this one resolved.
Nikko –
Thank seemed to work.
Thank you so much for your help. I appreciate itNikko –
That code helped tighten everything up, but it is still on the right hand side of the site.Thank you, Nikko!
I am still having some issues with the positioning of the button. I want it to be in that bar, but on the left side of the side. By the logo.
Any ideas?
Thanks.
Thank you, John.
I was curious where I would edit the top bar? Is this in a specific php file?
Thanks.I got it.
Thanks for your help.Hello, Jordan!
I have uploaded the pdf, yes.March 17, 2017 at 8:22 pm in reply to: how to get the header logo to overlap slider and return to header when scrolling #762708Hello, John.
I would like there to be an overlap of the logo from the main nav bar on the slider area, but when I slide down it would look like the header on that page (logo inside the main nav bar). It would go back into the header area instead of overlapping on the slider area.
Once it is on Mobile, I would like it to look like a normal header area (logo inside the main nav bar).Oh HECK YEAH! Why didn’t I think of that? :)
Thank you. As always, the support for this amazing theme is wonderful!
Elliott,
Maybe I didn’t explain this right? I have a masonry element displaying posts that are sorted by tags. The page linked below, for instance, shows all posts with the tag of “barcelona.” I want to change the sort order of the posts that are displayed. Currently, the masonry element gives me the choice of ordering by various fields, including: page order, date, title, random, author, etc. I want to add a custom field into that list to orderby. (I’d use the page order field, but since these are posts and not pages, it doesn’t appear that the option is open to me.)
I’m more than willing to accept your answer of “it is custom work,” but based on the reply, it sounded like maybe I used the wrong terminology, making you think I wanted something more complex than what I really need.
Page: http://www.room-ready.com/barcelona-gallery/
I just want to be able to change the order of these posts so that they are listed as: 70″ Display, 80″ Display, 90″ Display, Dual 70″, Dual 80, etc.
Is that still the complex situation you originally described? Thanks!
Elliott — I hacked a solution together by using the advanced styling tab to edit the H2 font sitewide. (Sorry — forgot I had done that after I posted.) But, that’s not really what I wanted. I really want to get the code above fixed so that the H2 heading on the slideshow is different from the H2 heading elsewhere.
I set it back so that you can see what I am referring to.
Thanks!
DanYou are a wizard. THANK YOU!
This reply has been marked as private.Do I need to implement the child theme in order to do this? I had it enabled, but do not at the moment.
Josue,
Thanks for the quick reply. I did that.
Here is the edited code: http://imgur.com/Ga6gM4d
But still not showing up in the list: http://imgur.com/6FuFfaa -
AuthorPosts