Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View Nikschavan's full-sized avatar
🎯
Focusing

Nikhil Nikschavan

🎯
Focusing
View GitHub Profile
@Nikschavan
Nikschavan / astra-post-title-instead-of-next-previous.php
Created August 10, 2018 14:17
Astra - Post title instead of next previous arrows
<?php // don't copy this line in your code.
function your_prefix_next_previous_post_titles() {
return array(
'next_text' => get_the_title( get_next_post() ) . ' <span class="ast-right-arrow">&rarr;</span>',
'prev_text' => '<span class="ast-left-arrow">&larr;</span> ' . get_the_title( get_previous_post() ),
);
}
@Nikschavan
Nikschavan / change-post-type-label.php
Last active August 8, 2018 14:46
Change label of a post type in WordPress using filter.
<?php // don't copy this line in your code
function your_prefix_change_post_type_slug( $args, $post_type ) {
if ( 'sfwd-topic' == $post_type ) {
$args['labels']['name'] = 'LD Topics';
}
return $args;
}
@Nikschavan
Nikschavan / woocommerce-product-gallery-thumbnails-dimensions.php
Created July 27, 2018 11:17
Change WooCommerce product gallery image thumbnail dimensions
@Nikschavan
Nikschavan / disable-post-navigation.php
Created June 4, 2018 13:21
Astra - Disable Next/Previous post navigation for specific post type
<?php // don't copy this line in your code.
/**
* Disable Next/Previous post links on specific post ttype.
* Change `your-post-type` to your post-type slug.
*
* @param Boolean $status true - If the navigation is displayed. False - If navigation is disabled.
* @return Boolean $status true - If the navigation is displayed. False - If navigation is disabled.
*/
function your_prefix_next_prev_links( $status ) {
@Nikschavan
Nikschavan / astra-disable-featured-image-on-all-pages.php
Last active May 18, 2018 07:02
Disable featured images on all pages - Astra WordPress Theme
@Nikschavan
Nikschavan / astra-disable-title-on-all-pages.php
Last active May 18, 2018 07:02
Disable title on all pages - Astra WordPress Theme
<?php // don't copy this line in your code
/**
* Disable title on all post types.
*/
function your_prefix_post_title() {
$post_types = array(
'post',
'page',
@Nikschavan
Nikschavan / dynamic-astra-customizer-options-update.php
Last active May 16, 2018 15:03
Astra Theme - Add 'Apply Now` button in the Header conditionally with a link to page with a form to apply.
<?php // don't copy this line in your file.
// Condition to check if this page requires `Apply Now` button.
if ( 1481 === get_the_id() ) {
your_prefix_setup_header_button_apply_now();
}
/**
* Setup filters for changing the values in the Astra Settings.
*/
@Nikschavan
Nikschavan / astra-align-footer-always-bottom-of-page.php
Last active May 16, 2018 14:21
Align the footer always in at the bottom of the page even if the page content is less.
jQuery(document).on('ready', function(event) {
// Scroll smoothly to anchor
jQuery('a[href^="#"]').on('click', function(event) {
var target = jQuery(this.getAttribute('href'));
if( target.length ) {
event.preventDefault();
jQuery('html, body').stop().animate({
scrollTop: target.offset().top
}, 1000);
@Nikschavan
Nikschavan / astra-sidebar-before-content.css
Created April 2, 2018 10:14
Astra Theme - Move the sidebar before the content on mobile
@media (max-width: 768px) {
#primary {
order: 2;
}
#secondary {
order: 1;
}
.ast-container {