Alvind
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [GeneratePress] How to download Starter site from Site LibraryHi there,
The Site Library is a GP Premium feature and can only be imported from the WP Admin dashboard.
Forum: Plugins
In reply to: [GenerateBlocks] Hide Post Menu ItemNo problem
To see if the
$relationshipreturns any data, could you try this:Below this line:
$relationship = get_field( "autor_relationship", $current_post );Add this:
var_dump($relationship);This will dump that variables value to the page, so we can then see what is inside it.
Forum: Plugins
In reply to: [GenerateBlocks] Hide Post Menu ItemAlternatively you can use this
add_action( 'admin_footer', function() {
?>
<script>
document.addEventListener('DOMContentLoaded', function () {
if (typeof wp !== 'undefined' && typeof wp.plugins !== 'undefined') {
var unregisterPlugin = wp.plugins.unregisterPlugin;
unregisterPlugin('gblocks-editor-sidebar');
}
});
</script>
<?php
} );This code will remove the button from the DOM instead of just hiding it.
Forum: Themes and Templates
In reply to: [GeneratePress] Remove page title blockThe Disable Title option should be at the bottom as shown in this screnshot:
https://postimg.cc/B83gmSzKReplace the
linked_consultantsto your relationship field name, which in you case isautor_relationshipForum: Themes and Templates
In reply to: [GeneratePress] Remove page title blockHi there,
The ‘white box’ is the background color of the header and content elements. You can remove the color under Customize > Colors > Header/Content > Background.
Hi there,
The Query Loop block doesn’t have built-in support for relationship fields, but it is possible with a custom PHP snippet. Refer here:
https://generate.support/topic/can-i-query-posts-from-an-acf-relationship-field/#post-111633
Forum: Themes and Templates
In reply to: [GeneratePress] Menu not showing on mobileHi there!
If you use any caching plugin, could you try turning it off first and see if this isn’t caused by caching?
Forum: Themes and Templates
In reply to: [GeneratePress] CSS HERO 5 keep loadingIn that case, it is not related to GeneratePress or a theme in general. You may need to reach out to the CSS Hero developers regarding this issue.
Forum: Themes and Templates
In reply to: [GeneratePress] Content box missingHi there,
Yes, the Element module is only available in Premium version.
Forum: Themes and Templates
In reply to: [GeneratePress] CSS HERO 5 keep loadingHi there,
Could you try switching to the default theme temporarily to see if the issue persists? This will help confirm if it’s a theme issue.
The theme only controls the display of the title tag on your site (which is correct if you view it from the source code). Is there a reason why you deactivated it?
Also, check your Google Search Console account for any errors regarding your site that might prevent it from being indexed.
The site title is set to Physio Markham, and I think that is correct. I see the SEO plugin you’re using is Rank Math. Have you contacted them regarding this issue as well?
Hi there,
The changes will not be reflected immediately in Google search results. You’ll need to ask Google to reindex your site from the Google Search Console.