Amit Singh
Forum Replies Created
-
I visited your website and the mobile header and menu is displaying properly. Kindly purge your browser and/or device cache. Kindly see the screenshot – https://prnt.sc/uOuJZs7DzLZY
This feature is actually unrelated to premium features. Also, please note that providing you support for premium options on this forum is forbidden by wp.org forum rules.
Since you already submitted a ticket for this exact same question and it was responded to, if you have any questions related to the premium options and functionality, kindly submit a ticket or reply to the email received from us.
Thank you for your understanding
Hi @taniasen
The issue appears because of this custom CSS. Try to remove it and the issue will be fixed. Also, adjust the header height for mobile view from customizer so mobile menu appears correctly.
@media only screen and (max-width: 1024px) {
#site-header .container >*:not(#site-navigation):not(.mobile-menu) {
display: none !important;
}
}Forum: Themes and Templates
In reply to: [OceanWP] Grey line under menuIt seems you have added custom CSS for header border. Try to remove this code and border will not appear.
header#site-header {
border-bottom: 1px solid #f1f1f1 !important;
}Forum: Themes and Templates
In reply to: [OceanWP] Grey line under menuHi @hazy23
The grey line is actually the header bottom border. You can disable it from the
Appearance > Customize > Header > General > Bottom Bordersetting.Forum: Themes and Templates
In reply to: [OceanWP] PreloaderHi @teamtacho,
Currently OceanWP preloader supports CSS icon (predefined), image, logo, SVG and custom template. If you can use custom template with your own CSS build icon, then yes you can make it working.
Forum: Plugins
In reply to: [Ocean Extra] Notice: Function wp_enqueue_script() was called incorrectlyHi,
Thank you for reaching out. We will surely take a look into it and will fix it in next update.
Forum: Themes and Templates
In reply to: [OceanWP] Previous/Next with categoryHi,
You can try the below code. Try it on a staging site and take site backup before that. You can add code using child theme.
function prefix_parent_category_navigation( $where, $in_same_term ) {
if ( ! is_singular( 'post' ) ) {
return $where;
}
if ( ! $in_same_term ) {
return $where;
}
$categories = get_the_category();
if ( empty( $categories ) ) {
return $where;
}
$cat = $categories[0];
while ( $cat->parent != 0 ) {
$cat = get_category( $cat->parent );
}
$parent_id = $cat->term_id;
global $wpdb;
$where .= $wpdb->prepare(
" AND tt.term_id = %d ",
$parent_id
);
return $where;
}
add_filter( 'get_previous_post_where', 'prefix_parent_category_navigation', 10, 2 );
add_filter( 'get_next_post_where', 'prefix_parent_category_navigation', 10, 2 );Forum: Themes and Templates
In reply to: [OceanWP] Footer Disappearing on a Specific PageHi @manuxx34 ,
It is because of the CSS code you have added in your site. See the below code and css selector –
body.page-id-354 #footer-widgets, body.page-id-354 #footer-bottom-innerbody.page-id-354 #footer-widgets, body.page-id-354 #footer-bottom-inner, body.page-id-354 .elementor-custom-embed {
display: none;
}To fix the issue, you have to modify the CSS code.
Hi @manuxx34
Thank you for reaching out. This is done to match the theme style. You can always modify it to change the style, and you already did that.
Forum: Themes and Templates
In reply to: [OceanWP] Read More ButtonsHi,
You have this code somewhere in your custom css or code snippet. You can adjust font size from here –
a.tpg-post-link {
display: inline-flex !important;
align-items: center !important;
gap: 3px !important;
font-size: 20px !important;
text-decoration: none !important;
}Forum: Themes and Templates
In reply to: [OceanWP] Previous/Next with categoryHi,
It is because your current post fall into both categories, therefore it is showing posts from both categories.
Forum: Themes and Templates
In reply to: [OceanWP] Previous/Next with categoryHi,
Kindly go to
Customize > Blog > Single Post > Single Post Optionsand selectCategoryfrom Next/Prev Post Taxonomy settings.This will make the pagination as you want.
Forum: Themes and Templates
In reply to: [OceanWP] Read More ButtonsHi,
I checked your site and it seems you already found the solution.
Forum: Themes and Templates
In reply to: [OceanWP] Previous/Next with categoryHi,
On archive pages, you can set standard pagination or infinite scroll. For the next and previous pagination styles, you have to add custom code. On a single post or page, you can see the next or previous post/page option. Let me know if I didn’t understand your query clearly.
Forum: Themes and Templates
In reply to: [OceanWP] Sticky PostGlad to hear that it works.