lamayas
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [OceanWP] YouTube embed video issuesI am having the same issue and it’s really frustrating. The fix from the thread you posted hides the space on some of my videos but makes others videos disappear completely.
The problem is fixed by changing themes so it does seem like an OceanWP bug.
Hoping for a helpuful response from support.
Forum: Plugins
In reply to: [Premium Addons for Elementor] Whole box link for Media Grid with videosWorks great! Thank you very much.
Forum: Plugins
In reply to: [Premium Addons for Elementor] Whole box link for Media Grid with videosAwesome! Here’s the link:https://juanvillaeditor.com/home
The play icon is disabled, I want the whole box to be clickable without the icon. Thanks for your help!
Forum: Themes and Templates
In reply to: [OceanWP] Link effect visible with current menu itemHi Abhishek, here’s the link: https://juanvillaeditor.com/about/
I would like to have the brackets visible on the current menu item and not just on hover.
Here’s a screenshot: https://tinyurl.com/yxvgndopThanks for your help!
That works, thank you.
Forum: Plugins
In reply to: [WooCommerce] How to make postcode field requiredThe country is set by default since I only deliver locally but nothing I tried worked.
The snippet works! Thanks for your help.
Forum: Themes and Templates
In reply to: [OceanWP] Hide single post entry on CPTHello,
This would hide it for my posts also. I need to hide it just for a custom post type. Is this possible?
Forum: Themes and Templates
In reply to: [OceanWP] Hide single post entry on CPTHi Abhishek,
My site is not live yet but here’s two screenshots:
https://tinyurl.com/y6pnmeuo
https://tinyurl.com/y5s7jb64Thanks for tour help!
Forum: Themes and Templates
In reply to: [OceanWP] Hide single post entry on CPTJust to clarify, I meant the title for the single post entry.
Forum: Themes and Templates
In reply to: [OceanWP] Page Title Font SizeYes, you can find the options on the Customizer > Typography > Page Title.
Forum: Themes and Templates
In reply to: [OceanWP] Can’t set header image for each page?On the Ocean Extra options for each page go to Title > Title Style > select Background image and choose one from the media library.
Hope that helps!
Forum: Themes and Templates
In reply to: [OceanWP] Sidebar and breadcrumbs for custom taxonomiesYes, it does. I mean, if I leave as
if (is_singular('artwork'))
it works fine, but if I add the taxonomy condition that’s when the sidebar starts appearing.Any idea why this could be happening?
Forum: Themes and Templates
In reply to: [OceanWP] Sidebar and breadcrumbs for custom taxonomiesThat’s what I mean. The layout is already on full width for pages but when I added the taxonomy condition to the code, the sidebar starts appearing on all my pages.
Am I missing something on the code?
Forum: Themes and Templates
In reply to: [OceanWP] Sidebar and breadcrumbs for custom taxonomiesI added the condition and it works but it also shows the sidebar on my homepage where it shouldn’t be, how can I prevent this?
This is the code I’m using from the developer documentation:
/** * Alter your post layouts */ function custom_layout_class( $class ) { // Alter your layout if (is_singular('artwork')) { $class = 'left-sidebar'; } // Return correct class return $class; } add_filter( 'ocean_post_layout_class', 'custom_layout_class', 20 );
- This reply was modified 4 years, 8 months ago by lamayas.
Forum: Themes and Templates
In reply to: [OceanWP] Show custom fields and hooks only on CPTThat works! Thanks for your help.