Hi guys!
If you want to change one menu name on mobile version, just edit “menu-primary.php” (Or the menu which name you want to change).
Search this line:
<span class="menu-toggle"><?php _e( 'Menu', 'oxygen' ); ?></span>
Now just change the word ‘Menu’ for whatever you want and save! Example:
<span class="menu-toggle"><?php _e( 'HELLOOOOOOO', 'oxygen' ); ?></span>
I hope it can be helpful for you!
Hugs from Catalonia!
Hi guys!
I was interested to use the featured slider for some specific pages (no posts. Just pages). In my case the solution was:
change this:
$args = array( 'posts_per_page' => 6, 'meta_key' => '_oxygen_post_location', 'meta_value' => 'featured', 'post__not_in' => get_option( 'sticky_posts' ) );
for this:
$args = array(
'post_type' => 'page',
'post__in' => array( 1, 2, 3, 4, 5 ),
'post_status' => 'publish'
);
Note: The numbers are the specific page number of the page which you are interested to publish in the slider
I hope it can help you!
Albert.