Forum Replies Created
-
Author
-
January 20, 2018 at 18:08 in reply to: How To Make Content Area Not Transparent to See Background Image #186380
lopreg
ParticipantThanks a lot @Kieran_SQ. Never knew it was this easy. Kleo is really a great theme
September 5, 2017 at 22:20 in reply to: To replace Publication date Meta with Last Modified date #172706lopreg
ParticipantIt worked! π Thanks a lot @Radu and @KieranSQ
September 4, 2017 at 00:40 in reply to: To replace Publication date Meta with Last Modified date #172559lopreg
ParticipantI have already attached the login credential to my last response. I will be waiting for their response then. Thanks
September 3, 2017 at 23:43 in reply to: To replace Publication date Meta with Last Modified date #172549lopreg
ParticipantThis reply has been set as private.September 3, 2017 at 23:41 in reply to: To replace Publication date Meta with Last Modified date #172548lopreg
ParticipantHi KieranSQ
I had actually disabled Meta for only that particular post. I have re-enabled it now and the above code still does not work. Please, check again
September 3, 2017 at 12:48 in reply to: To replace Publication date Meta with Last Modified date #172474lopreg
ParticipantHello KieranSQ
I added the suggested code to the Child themeβs functions.php but the output was on Pages and not posts. Please, how can I make this work on Post pages only?
February 12, 2017 at 09:50 in reply to: hentry Structured Data Errors on Google Search Console #152705lopreg
ParticipantHello @Abe,
Thanks for the response. The missing tag is entry-title in Single Articles. That also affects Blog archives as I can see the archives only shows data for all the single articles in the first page of the archive. So since the single articles already have missing title error, I also get 15 errors on the archives corresponding to the 15 articles on the first page of the archivesFebruary 1, 2017 at 12:05 in reply to: hentry Structured Data Errors on Google Search Console #151611lopreg
ParticipantHi @Abe,
Please the problem is Missing: entry-title and from my research, it appears the correct requested tag is not present in kleo and the Live Structured Data Testing Tool only shows errors for tags it is able to detect.
Please, take a look at the following links;
https://kb.yoast.com/kb/fixing-hcard-author-error/
https://riseofweb.com/wordpress-google-webmaster-tools-structured-data-error-hentry/
http://www.functionsphp.com/fix-google-structured-data-hentry-errors/
How can I implement the solution on the link above here on kleo?lopreg
ParticipantWow, thanks a lot for this @Radu. As I don’t want any mention of password, I removed all the codes there, leaving only the first comment line. I hope I did it the right way?
December 28, 2016 at 08:35 in reply to: hentry Structured Data Errors on Google Search Console #148181lopreg
ParticipantHi, Any idea on this issue? Anyone?
I have a strong feeling this has effect on google seo.December 18, 2016 at 08:58 in reply to: Menu Icons displaying blocks after some site changes #147359lopreg
ParticipantThanks a lot laura, I decided to stay off cdn for now. Whenever, am ready to use cdn services again, I will reach out to their support as you suggested. Thanks again.
December 18, 2016 at 08:31 in reply to: hentry Structured Data Errors on Google Search Console #147358lopreg
ParticipantHello @Abe, any solution to this yet?
Thanks for your anticipated kind responseDecember 12, 2016 at 05:57 in reply to: Menu Icons displaying blocks after some site changes #146709lopreg
ParticipantHi Laura, thanks a lot for the response.
I don’t think my caching plugin(Supercacher) has the minify option. It appears this is a cdn issue because as soon as I turned off cdn, the icons started showing.
I would love to continue using cdn. Is there any particular way I should be be setting up cdn to avoid this issue?
I use MaxCDN.lopreg
ParticipantYes, meta info will need to be displayed to reproduce the error on Google Web Masters Tool.
I have tried testing using the google structured data testing tool and it shows “All good” but the errors continue to appear on GWT and thats weird.
lopreg
ParticipantHi @Abe, I am also still having issues with this. I had previously disabled metadata display on my post pages and the error went away. But as soon as I updated to KLEO 4.0 and re-enabled the metadata display, the error popped back up on my google webmasters tool. Kindly, look into this further. Thanks.
Attachments:
You must be logged in to view attached files.lopreg
ParticipantHi,
Please, I will like to make a modification to the way meta data is displayed on my site.
I will like to display certain types of metadata on the post page, and other types of data on the category/tag & search archives.For example, I will like to display only author data on the single post pages while I display author and date data on the archive pages.
How can I achieve this, please?
lopreg
ParticipantIt doesn’t work. I have tried both the bp-custom.php and function.php, the codes doesn’t work in any of them when kleo is enabled.
Thanks for all the assistance @sharmstar and happy val πlopreg
ParticipantYes. I just tested the first code with 2015 theme, and it worked.
Thanks again for the assistance @sharmstrlopreg
ParticipantYou are right @sharmstr. I doesn’t appear to solve the problem.
Am I really the only one having this issue? Or is anyone else having the same challenge?
I have tried the codes below to completely remove buddypress feeds but none works.COPY CODEfunction bpfr_hide_rss_feeds() { remove_action( 'bp_actions', 'bp_activity_action_sitewide_feed' ); remove_action( 'bp_actions', 'bp_activity_action_personal_feed' ); remove_action( 'bp_actions', 'bp_activity_action_friends_feed' ); remove_action( 'bp_actions', 'bp_activity_action_my_groups_feed' ); remove_action( 'bp_actions', 'bp_activity_action_mentions_feed' ); remove_action( 'bp_actions', 'bp_activity_action_favorites_feed' ); remove_action( 'groups_action_group_feed', 'groups_action_group_feed' ); } add_action('init', 'bpfr_hide_rss_feeds');
COPY CODEfunction bp_remove_feeds() { remove_action( 'wp', 'bp_activity_action_sitewide_feed', 3 ); remove_action( 'wp', 'bp_activity_action_personal_feed', 3 ); remove_action( 'wp', 'bp_activity_action_friends_feed', 3 ); remove_action( 'wp', 'bp_activity_action_my_groups_feed', 3 ); remove_action( 'wp', 'bp_activity_action_mentions_feed', 3 ); remove_action( 'wp', 'bp_activity_action_favorites_feed', 3 ); remove_action( 'wp', 'groups_action_group_feed', 3 ); } add_action('init', 'bp_remove_feeds');
lopreg
Participant@Sharmstr thanks for the response. I have searched around but the codes I found doesn’t appear to work. Then I came across this => https://buddypress.org/support/topic/changing-the-default-rss-feed-sitewide-activity/. Please, can you help tell where I should be implementing it on the theme. Thanks again
January 12, 2016 at 17:55 in reply to: hentry Structured Data Errors on Google Search Console #98045lopreg
ParticipantAlright. Thanks again. I will be waiting for the update
January 12, 2016 at 17:42 in reply to: hentry Structured Data Errors on Google Search Console #98039lopreg
ParticipantThanks for the update @Andrei. Is there any temporal fix I can apply before the next theme update?
I was made to understand that this issue could be affecting my google ranking. Thanks for your assistancelopreg
ParticipantThanks for the response @Laura. I think I solved the issue by editing some of WpSEOs title templates from the default %%title%% %%page%% %%sep%% %%sitename%% to just %%title%%. What I don’t know is if this will have any negative SEO effect in future.
If there is a better way around this, I will love to know. Thanks againNovember 12, 2015 at 18:24 in reply to: Non Admin User Error "There was a problem posting your update. Please try again. #86959lopreg
Participant@Radu, I have already marked the topic as resolved. Thanks a lot
November 12, 2015 at 04:04 in reply to: Non Admin User Error "There was a problem posting your update. Please try again. #86897lopreg
ParticipantIt turned out there was some numbers I had restricted under WordPress comment moderation settings in the past. The settings appears to be stoping updates containing random numbers from going through on buddypress activity stream. I have removed the numbers, and the non-admin user updates seems to be working fine now.
For the double posting issue, I solved it by removing the wpengine function code mentioned in Kleo’s documentation; https://archived.seventhqueen.com/documentation/kleo#wp-engine.
November 11, 2015 at 23:41 in reply to: Non Admin User Error "There was a problem posting your update. Please try again. #86877lopreg
ParticipantIt seems the issue just temporarily disappeared. It now appears the error throws up only when post update containing certain characters are made. This is weird cos I have every other plugins, including akismet disabled.
November 11, 2015 at 20:29 in reply to: Non Admin User Error "There was a problem posting your update. Please try again. #86862lopreg
ParticipantI forgot to mention, the site is hosted on wpengine platform. Could it have anything to do with the hosting? Cos I see there’s special instruction for wpengine users on kleo’s documentation
-
AuthorPosts