Chetan Prajapati
Forum Replies Created
-
Forum: Plugins
In reply to: [SEOPress - On-site SEO] Date archive not workingHi thanks for reply.
Yes. It sounds weird.
I have tried to use default theme as well. Twentyseventeen and flushed permalinks as well.
Below are listed active plugins.
—–
BackWPup: 3.6.0
Custom Field Suite: 2.5.12
Duplicate Post: 3.2.2
Google Analytics Dashboard for WP (GADWP): 5.3.5
Ninja Forms: 3.3.9
Page Builder by SiteOrigin: 2.7.2
Send System Info: 1.3
SEOPress: 2.9.3
SG Optimizer: 4.0.7
Shield Security: 6.8.2
SiteOrigin Widgets Bundle: 1.11.8
WP SEO Structured Data Schema: 2.5I am getting the same warning too.
Forum: Plugins
In reply to: [SEOPress - On-site SEO] Some issues after update!Thank you!
Oh..Cool. Thanks ??
leaf.png & [email protected]
Yes.
I have added below functions to my child theme.
/** * Custom marker image for WPSL. */ function wpsl_custom_markers() { $admin_marker_dir = get_stylesheet_directory() . '/wpsl-markers/'; return $admin_marker_dir; } add_filter( 'wpsl_admin_marker_dir', 'wpsl_custom_markers' ); define( 'WPSL_MARKER_URI', dirname( get_bloginfo( 'stylesheet_url' ) ) . '/wpsl-markers/' );
and also added images to
wpsl-markers
folder.- This reply was modified 6 years, 9 months ago by Chetan Prajapati.
You are welcome!
Forum: Fixing WordPress
In reply to: Instagram, Facebook embed issue – stacking on top of each otherHappy to help! You can mark this topic resolved. ??
Forum: Fixing WordPress
In reply to: Instagram, Facebook embed issue – stacking on top of each otherIn Theme Customization, you will find option to add Additional CSS. You can add there.
Forum: Fixing WordPress
In reply to: Instagram, Facebook embed issue – stacking on top of each otherHey, This is due to position: absolute. Add below CSS
.instagram-media { position: static !important; }
Hi, Try below CSS.
.ninja-forms-field { border-color: #000 !important; }
- This reply was modified 6 years, 9 months ago by Chetan Prajapati.
Forum: Plugins
In reply to: [CP More URL Protocols] Modernization@siniinik thanks for suggestion. I will add them soon in next update.
@jpenaligon Can you please send valid URL? Currently it gives 404.
- This reply was modified 6 years, 9 months ago by Chetan Prajapati.
Forum: Fixing WordPress
In reply to: Logo Size in Twenty Fifteen theme@lotster, Did you tried above suggestion?
Forum: Fixing WordPress
In reply to: Logo Size in Twenty Fifteen themeYou can add option for skip cropping logo by this way. Into functions.php
replace
add_theme_support( 'custom-logo', array( 'height' => 248, 'width' => 248, 'flex-height' => true, ) );
with
add_theme_support( 'custom-logo', array( 'height' => 248, 'width' => 248, 'flex-width' => true, 'flex-height' => true, ) );
Then upload logo again, it will have option to skip crop logo. So it will use original size logo.
- This reply was modified 6 years, 9 months ago by Chetan Prajapati.