Jagrav
Forum Replies Created
-
Forum: Plugins
In reply to: [Disable Gutenberg] 500 error when trying to updateThis issue is resolved. That you for the plugin and personal responses.
Forum: Plugins
In reply to: [Disable Gutenberg] 500 error when trying to updateThanks so much for your replies. No, the issue has not been resolved on this one website. I’ve just restored to an earlier backup date that’s still working. Many plugins still need to be updated before the big WordPress update. Will follow through on your latest message.
Have an inspiring Thanks Giving!
Forum: Plugins
In reply to: [Disable Gutenberg] 500 error when trying to updateI updated today. I also have this plugin running on other sites and they have all updated fine.
Forum: Themes and Templates
In reply to: [Book Landing Page] Embedding VideosI had a problem with the youtube videos not displaying. I contacted their website tech support and received this answer:
Regarding the video code, sometimes, this issue is seen due to the plugin conflict. There are different modules available in Jetpack and one of them is Shortcode module.
If you have Enabled this then this will change the Youtube iframe code to shortcode which makes the map code to be a shortcode and displayed as it is and you won’t see the Map.
Can you please deactivate the plugin and add the iframe code once again and check if the map is displayed or not.
If the video is displayed then you can activate the plugin again.
If your video is still not displayed, please let me know for further assistance.
Support page: https://raratheme.com/support-ticket/
Complete documentation: https://raratheme.com/documentation/book-landing-page/
https://raratheme.com/wordpress-themes/book-landing-page/Hope this helps ??
Forum: Plugins
In reply to: [St-Daily-Tip] V 3.8 Problemwreston (@wreston)
Where can I find version 3.7 to resolve issue?
Thanks ??- This reply was modified 7 years, 5 months ago by Jagrav.
Forum: Plugins
In reply to: [Maps Widget for Google Maps] Google API integration problemNow, the map is not showing up.
Forum: Plugins
In reply to: [Maps Widget for Google Maps] Google API integration problemThank you for your prompt reply. I have a multisite. Your “Google Maps Widget” is network activated. Today the map is showing up on the two websites I’m using it on. When I look in dashboard > settings > Google Map Widget > for both websites, the “Google Maps API Key” is blank (). Maps working! No API coded in settings! I don’t understand ??
Forum: Plugins
In reply to: [Maps Widget for Google Maps] Remove Admin NoticeThank you. I like your plugin. The wording was confusing.
Forum: Plugins
In reply to: [Maps Widget for Google Maps] Remove Admin NoticeBut I just want to use the free version.
Forum: Plugins
In reply to: [MC4WP: Mailchimp for WordPress] Difficulty subscribingI deleted my test subscriber info in MailChimp.
Reset my plugin settings to “opt-in: yes”.
Subscribed from the website using a different email address.
Waited patiently for the confirmation email.
And, wallah – it worked ??Thank you for sticking in there with me through this process.
It’s such an essential part of the website.Forum: Plugins
In reply to: [MC4WP: Mailchimp for WordPress] Difficulty subscribingAs you suggest, I set “Double Opt-in” to NO and I was added to the subscriber list.
Forum: Reviews
In reply to: [The Events Calendar] Working well for UsI’m using The Events Calendar on Multisite and am unable to add license key for the same reason. At this point, I was told it will work fine, but I’ll have to update manually.
Forum: Fixing WordPress
In reply to: Page Template Question – New Template with no Title?* Creating custom page templates
Create a custom page template for pages that won’t show the title.
1) Open original \wp-content\themes\twentyten\page.php
2) Then “Save As” to \wp-content\themes\childOfTwentyTen\
a) Rename page.php to brandedPage.php
b) To define a custom page template in \childOfTwentyTen\brandedPage.php, go to the top of the page and add:<?php /* Template Name: Branded Page with No Title */ ?>
The Custom page template will now appear in:
Admin > Page: Template > Branded Page with No TitleThe content of page.php comes from \themes\twentyten\loop-page.php.
So open the \twentyten\loop-page.php and save to the childOfTwentyTen folder.Change:
<?php if ( is_front_page() ) { ?> <h2 class="entry-title"><?php the_title(); ?></h2> <?php } else { ?> <h1 class="entry-title"><?php the_title(); ?></h1> <?php } ?>
To this:
<?php if ( !is_page_template ('brandedPage.php')) { ?> <?php if ( is_front_page() ) { ?> <h2 class="entry-title"><?php the_title(); ?></h2> <?php } else { ?> <h1 class="entry-title"><?php the_title(); ?></h1> <?php } ?> <?php } ?>
Make sure template is selected in your example page:
Admin > Page: Template > Branded Page with No TitleI hope this works for you ??
Forum: Fixing WordPress
In reply to: Page Template Question – New Template with no Title?Hi, I’m taking the same class and am also not able to get Mor10’s code to work. Did you ever solve it?