petedan
Forum Replies Created
-
The OP says he set Elementor to use theme colours, which is what I’ve done too, so why is it even still outputting this CSS?
Same here. No solution to this?
Without shortcode use in description / short description, it’s not suitable for my needs. I hope you will consider this option soon.
Thank you.
So, I sent a support ticket using the link on this plugin page, and there you tell me to post support questions here. 5 days no answer here!
What kind of passive aggressive nonsense are you playing?
- This reply was modified 4 years, 6 months ago by petedan.
Forum: Plugins
In reply to: [Customer Email Verification for WooCommerce] delete unverified usersThis would be a great feature to add, either manually delete all unverified users, or set an automatic time based deletion schedule.
+1 from me ??
The social media login plugin will do the verification for you, but your plugin will show the user as still unverified correct?
Forum: Themes and Templates
In reply to: [OceanWP] Display breadcrumbs on front pageWonderful support here!
Forum: Themes and Templates
In reply to: [OceanWP] Custom link for mobile logo (2nd try)And while we do want to help everyone out when it comes to a few lines of code, your design idea requires much, much more.
Is a simple solution like this too much of an effort for you to suggest?
add_action( 'get_custom_logo', 'change_logo_url' ); // Main logo add_action( 'ocean_responsive_logo', 'change_logo_url' ); // Responsive logo function change_logo_url( $html ) { $old_url = esc_url( home_url( '/' ) ); // Current site URL $new_url = esc_url( 'new.url.com' ); // New URL $html = str_replace( 'href="'. $old_url .'"', 'href="'. $new_url .'"', $html ); return $html; }
Forum: Themes and Templates
In reply to: [OceanWP] Display breadcrumbs on front pageSeriously? How does that make a difference?
All I’m asking is for the code to override the if statement in the oceanwp -> inc -> breadcrumbs.php file shown in the first post, so instead it’s something like the below code.
Beginning to feel like you just couldn’t be bothered with most of the support questions here. Not the first time you’ve dismissed a simple support question.
// Return if breadcrumbs are disabled. if ( ! oceanwp_has_breadcrumbs() || is_main_site() && is_front_page() ) { return; }
Forum: Themes and Templates
In reply to: [OceanWP] Display breadcrumbs on front pageYes, I’m using multisite, and I only wish for the breadcrumbs to be disabled on the front page of the main site. I wish for breadcrumbs to show on the front page of sub-sites only.
My site is not yet live, only localhost.
Thank you.
Forum: Plugins
In reply to: [Customer Email Verification for WooCommerce] Can Still Create OrderI think a good solution is the function I have given in the precious post. It will redirect unregistered customer from the checkout page to the verification page. That means no checkout possible until verified.
Forum: Themes and Templates
In reply to: [OceanWP] Broken core CSS since 1.8.4 updateYeah, since the update to OceanWp 1.8.4, everything has been a mess.
And it will take 4-6 weeks for support to reply.
Seems sensible right, to do this? I mean, it’s done for plugins.
Last time this was mentioned here, the answer was it’s a limitation from www.ads-software.com, not from theme developers, they can not add changelogs on the theme updates pages.
Forum: Themes and Templates
In reply to: [OceanWP] Broken core CSS since 1.8.4 updateGo into Customise -> General Options -> Theme Buttons, and change the padding there.
I think this may be the issue. Nothing in the changelog about this!
- This reply was modified 4 years, 8 months ago by petedan.
Forum: Themes and Templates
In reply to: [OceanWP] CSS error after update 1.8.4The padding on some pages for me has suddenly become 0. Not sure where this came from?
#main #content-wrap, .separate-layout #main #content-wrap {
padding-top: 0;
padding-bottom: 0;
}Is it just me, or is this option new? Customise -> General Options -> General Settings, content padding.