<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Best Website Designers in Vijayawada – Web design company in Vijayawada </title>
	<atom:link href="https://crazywebdesigner.com/web-designers/vijayawada/feed/" rel="self" type="application/rss+xml" />
	<link>https://crazywebdesigner.com</link>
	<description></description>
	<lastBuildDate>Fri, 19 Sep 2025 11:44:24 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.8.5</generator>

<image>
	<url>https://crazywebdesigner.com/wp-content/uploads/2025/09/cropped-craz-web-designer-favicon-32x32.png</url>
	<title>Best Website Designers in Vijayawada – Web design company in Vijayawada </title>
	<link>https://crazywebdesigner.com</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>How to Disable Schema Markup Added by Astra Theme: A Step-by-Step Guide</title>
		<link>https://crazywebdesigner.com/how-to-disable-schema-markup-added-by-astra-theme-a-step-by-step-guide/</link>
					<comments>https://crazywebdesigner.com/how-to-disable-schema-markup-added-by-astra-theme-a-step-by-step-guide/#respond</comments>
		
		<dc:creator><![CDATA[Crazywhiz]]></dc:creator>
		<pubDate>Fri, 19 Sep 2025 11:44:22 +0000</pubDate>
				<category><![CDATA[Vijayawada]]></category>
		<guid isPermaLink="false">https://crazywebdesigner.com/?p=3455</guid>

					<description><![CDATA[If you are running a WordPress website using the Astra theme, you may have noticed that it automatically adds schema markup to your pages. While structured data is essential for SEO, sometimes it can conflict with plugins like Rank Math or WP Job Manager, resulting in duplicate schema warnings or Google Rich Results issues. In [&#8230;]]]></description>
										<content:encoded><![CDATA[
<p>If you are running a WordPress website using the <strong>Astra theme</strong>, you may have noticed that it automatically adds <strong>schema markup</strong> to your pages. While structured data is essential for SEO, sometimes it can <strong>conflict with plugins like Rank Math or WP Job Manager</strong>, resulting in duplicate schema warnings or Google Rich Results issues.</p>



<p>In this guide, we’ll show you <strong>how to disable Astra’s schema markup safely</strong> without affecting your site’s SEO performance.</p>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h2 class="wp-block-heading">Why Disable Astra Schema Markup?</h2>



<p>Astra adds JSON-LD markup for <strong>Articles, WebPages, and BlogPosting</strong> by default. While this is helpful for basic SEO, it can cause issues when:</p>



<ol class="wp-block-list">
<li>You use <strong>Rank Math or Yoast SEO</strong>, which also inject schema.</li>



<li>You have <strong>job listings using WP Job Manager</strong> — Google requires a clean <code>JobPosting</code> schema, and duplicates can prevent your jobs from showing in Google Jobs.</li>



<li>You want <strong>full control over the structured data</strong> on your site.</li>
</ol>



<p>By disabling Astra schema, you can <strong>avoid conflicts and make sure Google reads the correct structured data</strong> for your content.</p>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h2 class="wp-block-heading">Methods to Disable Astra Schema</h2>



<h3 class="wp-block-heading">1. Disable All Astra Schema via Code</h3>



<p>Add the following code to your <strong>child theme’s <code>functions.php</code></strong> or use a <strong>Code Snippets plugin</strong>:</p>



<pre class="wp-block-code"><code>// Disable all Astra schema markup
add_filter( 'astra_schema_enabled', '__return_false' );
</code></pre>



<p>This disables <strong>all JSON-LD structured data</strong> generated by Astra.</p>



<h3 class="wp-block-heading">2. Disable Specific Schema Components</h3>



<p>If you want to <strong>keep certain schema types</strong> (like breadcrumbs) but remove blog or page schema:</p>



<pre class="wp-block-code"><code>add_filter( 'astra_disable_blog_post_schema', '__return_true' );
add_filter( 'astra_disable_blog_schema', '__return_true' );
add_filter( 'astra_disable_single_post_schema', '__return_true' );
add_filter( 'astra_disable_single_page_schema', '__return_true' );
</code></pre>



<p>This method allows selective control over schema while avoiding duplicates.</p>



<h3 class="wp-block-heading">3. Use Rank Math or Yoast SEO Settings</h3>



<p>If you’re using <strong>Rank Math SEO</strong>:</p>



<ul class="wp-block-list">
<li>Go to <strong>Rank Math → Titles &amp; Meta → Global Meta</strong></li>



<li>Enable <strong>“Remove Duplicate Schema”</strong><br>This ensures <strong>Rank Math manages your schema</strong> and Astra’s default JSON-LD won’t conflict.</li>
</ul>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h2 class="wp-block-heading">Best Practices After Disabling Astra Schema</h2>



<ol class="wp-block-list">
<li><strong>Test Your Pages</strong> using <a>Google Rich Results Test</a> to ensure structured data is valid.</li>



<li><strong>Let WP Job Manager handle JobPosting schema</strong> if you have job listings.</li>



<li><strong>Keep breadcrumbs schema enabled</strong> if your theme or plugin supports it — it helps Google understand your site structure.</li>



<li><strong>Clear caches</strong> after making changes to ensure the new schema is served.</li>
</ol>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<p>Disabling Astra’s default schema markup is <strong>safe and recommended</strong> if you want <strong>complete control over your structured data</strong>, especially for job listings or sites using Rank Math. Using the filter hooks above, you can <strong>remove duplicates while keeping essential SEO elements</strong> intact.</p>



<p>Take action today to <strong>optimize your site for Google Rich Results</strong> and ensure that your content is properly indexed without conflicts.</p>


<div class="cw-request-quote-section" style="margin-top:30px; text-align:center; padding:15px; border:1px solid #ddd; border-radius:6px;">



    <p style="font-size:16px; color:#333; margin-bottom:10px;">
        Post your Project & Get Free Quote.
    </p>

    <button class="cw-request-quote-btn" 
            data-post="3455" 
            style="padding:12px 25px; background-color:#228B22; color:#fff; border:none; border-radius:6px; cursor:pointer; font-weight:600;">
        Get Quote
    </button>    <p style="font-size:16px; color:#333; margin-bottom:10px;">
        ---
    </p>
	
	    <img decoding="async" src="https://crazywebdesigner.com/wp-content/uploads/2020/01/why-choose-us.jpg" alt="Free Listing" style="margin-bottom:10px; display:block; margin-left:auto; margin-right:auto;" title="How to Disable Schema Markup Added by Astra Theme: A Step-by-Step Guide 2">
</div>



    <script type="text/javascript">
    jQuery(document).ready(function($){
        $('.cw-request-quote-btn').on('click', function(){
            var confirmMessage = "To get quote, Click OK to continue.";
            if (!confirm(confirmMessage)) return;

            var post_id = $(this).data('post');

            $.ajax({
                url: 'https://crazywebdesigner.com/wp-admin/admin-ajax.php',
                type: 'POST',
                data: {
                    action: 'cw_send_quote_email',
                    post_id: post_id
                },
                success: function(response){
                    console.log('Notification sent to tutor.');
                },
                error: function(){
                    console.log('Error sending request.');
                }
            });

            // Redirect user after clicking
            window.location.href = 'https://crazywebdesigner.com/booking/';
        });
    });
    </script>
    ]]></content:encoded>
					
					<wfw:commentRss>https://crazywebdesigner.com/how-to-disable-schema-markup-added-by-astra-theme-a-step-by-step-guide/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Web Designers in Vijayawada</title>
		<link>https://crazywebdesigner.com/web-designers-in-vijayawada/</link>
					<comments>https://crazywebdesigner.com/web-designers-in-vijayawada/#respond</comments>
		
		<dc:creator><![CDATA[Crazywhiz]]></dc:creator>
		<pubDate>Sun, 07 Sep 2025 18:13:37 +0000</pubDate>
				<category><![CDATA[Vijayawada]]></category>
		<guid isPermaLink="false">https://crazywebdesigner.com/web-designers-in-vijayawada/</guid>

					<description><![CDATA[Web Design Services in Vijayawada Find Web Designers in Vijayawada through Crazy Web Designer, a reliable choice for businesses and individuals seeking modern website solutions. From custom website design, SEO integration, hosting, and maintenance, we ensure your online presence is impactful and professional. Our websites are designed to improve visibility, generate leads, and deliver lasting [&#8230;]]]></description>
										<content:encoded><![CDATA[
<figure class="wp-block-image size-large"><img fetchpriority="high" decoding="async" width="1024" height="695" src="https://crazywebdesigner.com/wp-content/uploads/2025/09/web-designers-in-hyderabad-1-1024x695.jpg" alt="Crazy web designers" class="wp-image-3311" title="Web Designers in Vijayawada 4" srcset="https://crazywebdesigner.com/wp-content/uploads/2025/09/web-designers-in-hyderabad-1-1024x695.jpg 1024w, https://crazywebdesigner.com/wp-content/uploads/2025/09/web-designers-in-hyderabad-1-300x204.jpg 300w, https://crazywebdesigner.com/wp-content/uploads/2025/09/web-designers-in-hyderabad-1-768x521.jpg 768w, https://crazywebdesigner.com/wp-content/uploads/2025/09/web-designers-in-hyderabad-1.jpg 1280w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>


<h2>Web Design Services in Vijayawada</h2>
<p>Find Web Designers in Vijayawada through Crazy Web Designer, a reliable choice for businesses and individuals seeking modern website solutions. From custom website design, SEO integration, hosting, and maintenance, we ensure your online presence is impactful and professional. Our websites are designed to improve visibility, generate leads, and deliver lasting results.</p>
<h2>Why Crazy Web Designer?</h2>
<p>With Crazy Web Designer in Vijayawada, you enjoy premium features at affordable prices, including:<br />
&#8211; Free domain setup and integration<br />
&#8211; Hosting setup with 1 year free hosting<br />
&#8211; SSL-enabled secure websites<br />
&#8211; Maintenance and technical support<br />
&#8211; SEO-friendly structure for higher rankings</p>
<h2>How it Works</h2>
<p>The process begins with a simple consultation. Book an appointment with Crazy Web Designer, discuss your website needs, and select the features you want. We will share a step-by-step payment plan and deliver a polished, responsive website tailored for your business in Vijayawada.</p>

<div class="latepoint-book-button-wrapper wp-block-button"><a href="#" class="latepoint-book-button os_trigger_booking wp-block-button__link latepoint-book-button-1aq0rlh3z-1749019508247" >Book Appointment</a></div>

<div class="cw-request-quote-section" style="margin-top:30px; text-align:center; padding:15px; border:1px solid #ddd; border-radius:6px;">



    <p style="font-size:16px; color:#333; margin-bottom:10px;">
        Post your Project & Get Free Quote.
    </p>

    <button class="cw-request-quote-btn" 
            data-post="3316" 
            style="padding:12px 25px; background-color:#228B22; color:#fff; border:none; border-radius:6px; cursor:pointer; font-weight:600;">
        Get Quote
    </button>    <p style="font-size:16px; color:#333; margin-bottom:10px;">
        ---
    </p>
	
	    <img decoding="async" src="https://crazywebdesigner.com/wp-content/uploads/2020/01/why-choose-us.jpg" alt="Free Listing" style="margin-bottom:10px; display:block; margin-left:auto; margin-right:auto;" title="Web Designers in Vijayawada 5">
</div>



    <script type="text/javascript">
    jQuery(document).ready(function($){
        $('.cw-request-quote-btn').on('click', function(){
            var confirmMessage = "To get quote, Click OK to continue.";
            if (!confirm(confirmMessage)) return;

            var post_id = $(this).data('post');

            $.ajax({
                url: 'https://crazywebdesigner.com/wp-admin/admin-ajax.php',
                type: 'POST',
                data: {
                    action: 'cw_send_quote_email',
                    post_id: post_id
                },
                success: function(response){
                    console.log('Notification sent to tutor.');
                },
                error: function(){
                    console.log('Error sending request.');
                }
            });

            // Redirect user after clicking
            window.location.href = 'https://crazywebdesigner.com/booking/';
        });
    });
    </script>
    ]]></content:encoded>
					
					<wfw:commentRss>https://crazywebdesigner.com/web-designers-in-vijayawada/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
