twgerber
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [OceanWP] Menu with Custom HeaderWhy isn’t stick anything working?
Forum: Themes and Templates
In reply to: [OceanWP] Mobile Menu not showing.This code does not help.
Still no mobile menu
Forum: Themes and Templates
In reply to: [OceanWP] Menu with Custom HeaderHello?
Forum: Themes and Templates
In reply to: [OceanWP] Mobile Menu not showing.Help!
Forum: Themes and Templates
In reply to: [OceanWP] Menu with Custom HeaderHelp!
Forum: Themes and Templates
In reply to: [OceanWP] Mobile Menu not showing.See my custom header thread.
Note that NO mobile menu appears at all.
Forum: Themes and Templates
In reply to: [OceanWP] Menu with Custom HeaderI still need help here Amit.
Forum: Themes and Templates
In reply to: [OceanWP] Menu with Custom HeaderWhy isn’t stick anything working at all it appears?
I am not using a cache plugin at this time.
- This reply was modified 6 years, 8 months ago by twgerber.
Forum: Themes and Templates
In reply to: [OceanWP] Menu with Custom HeaderI added the Oceanwp Stick Anything plugin and specified:
.main-menu
offset 300pxNo change
I tried #main-menu too.
Forum: Themes and Templates
In reply to: [OceanWP] How to get header like this?Forum: Themes and Templates
In reply to: [OceanWP] Menu with Custom HeaderBut shouldn’t the menu be after the image/text if I place the shortcut after them?
The image/text should be BEFORE the menu.
Forum: Themes and Templates
In reply to: [OceanWP] Menu with Custom HeaderAlso how do I make just the Menu shortcode sticky?
Forum: Themes and Templates
In reply to: [OceanWP] How to get header like this?I built it but menu appears before not after like I think it should be
img src=”http://ladeeda.preisen.com/wp-content/uploads/2015/10/LaDeeDa_logo-e1444959801419.png” />
<h2 align=”center”>Kid’s Birthday Parties, Children’s Hair Salon & Spa, Princess & Character Visits & Face Painting</h2><br>
<h4 align=”center”><span class=”fy4CJe”>2250 FL-580; </span><span class=”fy4CJe”>Clearwater, FL 33763</span> (727)301-1808</h4><br>
[oceanwp_nav position=”center”]Forum: Themes and Templates
In reply to: [OceanWP] Simple logo – how to replace it?ok
Forum: Themes and Templates
In reply to: [OceanWP] archive pages – h1 tagYes I tried:
function my_alter_page_header_title( $title ) {
$paged = (get_query_var(‘paged’)) ? get_query_var(‘paged’) : 1;
if ( is_archive() ) {
$title = $paged;
}
return $title;
}
add_filter( ‘ocean_title’, ‘my_alter_page_header_title’, 20 );AND
function my_alter_page_header_title( $title ) {
$paged = (get_query_var(‘paged’)) ? get_query_var(‘paged’) : 1;
if ( is_archive() ) {
$title = $title.$paged;
}
return $title;
}
add_filter( ‘ocean_title’, ‘my_alter_page_header_title’, 20 );Always get an error on the $title = line.