wickeninc
Forum Replies Created
-
Hi @mlchaves we’re not able to access and/or exclude our password reset page /my-account/lost-password/ when not logged in. It’s the standard WordPress link. Here is our login page https://supplies-hazmatresource.com/login-page/ and associated password reset page https://supplies-hazmatresource.com/my-account/lost-password/
I tried Restriction Editor > Content – Is Not – Pages: Child of – My account (ID: 43) but no luck. Thank you for sharing thoughts on how to access the Lost Password page when not logged in.
The CSS code worked perfectly, thank you, amazing support!
Here is a page for an event that we just hosted https://www.artymcgoo.com/virtual-homework/artys-virtual-homework-july-25-2020/ we can use to remove the ‘Join in Browser’.
We’ll be adding a new event his weekend where we’d like to remove the button as well. If this will be a global remove we do have a child theme we can add code to as needed.
Thank you for the help!
Can you supply the CSS code needed?
Thank you Sanjeev!
Forum: Themes and Templates
In reply to: [OceanWP] Add the Ocean Settings Metabox in a Custom Post TypeI had been adding via ftp into the functions.php file. I started over with fresh code and then manually typed in your code edits. Worked fine. I think my issue was cutting and pasting from the email received from ww.wp.xz.cn
Thanks again Amit!
Forum: Themes and Templates
In reply to: [OceanWP] Add the Ocean Settings Metabox in a Custom Post TypeHi Amit, thank you for the response. I am new to coding so tried the following but didn’t get it right. Can you share how the code should look with my two types being ‘video’ & ‘radio’.
/**
* Add the OceanWP Settings metabox in your CPT
*/
function oceanwp_metabox( $types ) {// Your custom post type
$types[] = 'video';
$types[] = 'radio';// Return
return $types;}
add_filter( ‘ocean_main_metaboxes_post_types’, ‘oceanwp_metabox’, 20 );Forum: Themes and Templates
In reply to: [OceanWP] Add the Ocean Settings Metabox in a Custom Post TypeHi, I was able to add the metabox to one of my custom post type (video). How would I add it to two separate post types?
I have both a ‘video’ and ‘radio’ custom content type. Adding ‘video’ to the code shown here worked fine:
// Your custom post type
$types[] = ‘video’;