vladff
Forum Replies Created
-
Forum: Reviews
In reply to: [Sydney] Almost Great! But Not QuiteHey @blackhawke, thank you so much for your review!
I’ll try to clarify each item:
- you can create a logo that includes your site title and uses a calligraphic font there. Allowing you to choose a font only for the site title adds to the load time without any real reason;
- you can display a logo on your website, simply go to Customize > Header and you’ll notice the Site Identity component in the header builder;
- the hero slider does allow a single link in the button for all slides and it is correct that unfortunately it does not support blog posts. It is a good idea though and I’ll note it.
I hope this clarifies some things. Feel free to use the support forum should you require any further help.
Thanks,
VladForum: Reviews
In reply to: [Sydney] Free theme is very buggy. Support does not respond.Hi @das-capitolin, if you have the time and are willing, please feel free to email me at vlad[at]athemes.com to let me know about the problems you’re facing, perhaps there’s something we’re not aware of. Thank you!
Forum: Themes and Templates
In reply to: [Sydney] Boxed Content Posts Still Show Background ImageHi, if it’s a page then it would be
.type-pagerather than.type-postForum: Themes and Templates
In reply to: [Sydney] Recent update has changed/removed customizationsHello,
From what I can see, your customizations are still there but are overridden from your child theme’s stylesheet. It would appear you are duplicating a large portion of the main stylesheet inside your child’s stylesheet. Could you please remove the code you do not need? I suspect this started happening now because a WP update, not a theme update.
Forum: Themes and Templates
In reply to: [Sydney] Background color all over the main page after updateHi,
We added better control for boxed layouts but unfortunately, a body class was changed in the latest WP core releases. Could you please add this code for now in Appearance > Customize > Additional CSS and we’ll handle it permanently in the next theme update:
body.wp-singular .content-inner {
padding: 60px;
background-color: #fff;
box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.05);
}Forum: Themes and Templates
In reply to: [Sydney] Fatal Error on ver. 2.5.8@supportfromrichard I believe I know what you’re saying, your issue seems to be with the rollback rather than with the update (2.59). You were using the old header/footer and when you rollbacked you were migrated to the Header and Footer Builder.
You can switch to the old header/footer by:
1. install Code Snippets or WPCode
2. add this PHP code:$modules = get_option('sydney-modules');$modules['hf-builder'] = false;update_option('sydney-modules', $modules);
3. run it once and then feel free to delete the plugin if you don’t need it.
Could you please tell me the plugin you used to rollback?Forum: Themes and Templates
In reply to: [Sydney] Fatal Error on ver. 2.5.8Hey @supportfromrichard,
Can you explain what exactly have you lost so we can look into it? Thanks.Forum: Themes and Templates
In reply to: [Sydney] How do I hide the tags on my blog post?Hello,
Really sorry about the huge delay here.
I see you’ve added some code to hide them. You can also go to Customize > Blog > Single posts and you’ll notice an option there to hide the tags.
Vlad
Forum: Themes and Templates
In reply to: [Sydney] Problem whit Sydney ThemeHello,
Really sorry about the huge delay here.
As far as I can see you managed to resolve this? The header and footer seem to look the way you’ve described them.
Forum: Themes and Templates
In reply to: [Sydney] Background Color change for single blog postHi,
Sorry for the huge delay here.
If it’s an actual post, you can use this in Customize > Additional CSS:
.postid-731 {background-color: #333;}You need to replace 731 with your actual ID (you can find it in the URL bar when you edit your post) and #333 with the actual colors you want.
We will also have an option for this in one of the next updates.
Forum: Themes and Templates
In reply to: [Sydney] Header Menu not visible on mobileHello,
First of all, I would like to apologize for the huge delay here.
The menu on your mobile version is toggled by clicking the hamburger icon. The problem is that you have some negative margin on your first Elementor section (at least on your homepage, haven’t checked other pages), which pulls your content over the hamburger icon, making it unclickable. If you remove that negative margin, everything should be fine.
Vlad
Forum: Themes and Templates
In reply to: [Sydney] New header/footer builderHi,
Sorry to hear you’re having issues with it. You can simply disable it if you don’t need it/can’t make it work the way you want to.
You can install the Code Snippets plugin add this code and activate it, then you can simply uninstall the plugin if you don’t need it for something else:
$modules = get_option(‘sydney-modules’);
$modules[‘hf-builder’] = false;
update_option(‘sydney-modules’, $modules);Please keep in mind that we have a video on our channel that shows how to use it. We understand that it’s far different than the previous way of building the header so we do mention in our upgrade notice that there’s no point in activating the builder if you’re happy with your current header/footer.
We will improve it over time with more options based on your feedback.
Forum: Themes and Templates
In reply to: [Sydney] Sidebar disabled yet always showsHello,
Your screenshot shows you are disabling the sidebar from the Pages section that affects only pages (not archives or single posts) but you are previewing your blog. To disable the sidebar for your blog, please go to the Customize > Blog section.
That’s why it works when you set your homepage to a Static Page.
Forum: Themes and Templates
In reply to: [Sydney] Header Builder Style Background Not WorkingHi,
I just tested again and I can see how this is confusing. I apologize for that.
The colors you’re trying to change refer to the whole header. But you’re using only the main row which already has a background color so you need to go to the main row options and change that specific color. For the footer we will have a fix today.
Again, I see how this might be confusing so we’ll add a note or something to clarify this.
- This reply was modified 1 year, 1 month ago by vladff.
Forum: Plugins
In reply to: [aThemes Addons for Elementor] Previous and next links show unwanted categoryHello,
Just to confirm, the previous and next posts links on your single post views are not handled by the plugin. These links are handled by your theme and show previous/next posts that are chronologically before or after your respective post.
Talk to your theme developer about this but you would need to write some custom code involving
get_previous_postandget_next_post.If I’m misunderstanding something, please feel free to share a link where I can see these posts.
Thanks.