Christos Pontikis
Forum Replies Created
-
Dear Support Team
thanks again for your swift reply! Great support!
OK, I will try the workarounds you suggested and I will update the thread. I guess that many people may have the same or similar problem ??
Best Regards
Dear Support Team
thank you for your prompt response, I really appreciate it.
Regarding “I could imagine that your Facebook profile is not listed below “People with Facebook access” in your page access as shown in this guide:”, yes, you are right – see https://imgur.com/a/AoCvtO2 – but…
FB does not let me add my profile after pressing “Add new” on “People with Facebook access“. Please see https://imgur.com/a/PMKkb65
Moreover, in Meta Business Suite I am mentioned having full access – please see https://imgur.com/a/090CuCz
So, what is the solution here…?
Best Regards
Dear Support
in continuation of my previous post: not only I caanot connect a new page, but connection to already working FB pages is discontiued.
I get
[16/06/2024 13:42:09] [ERROR] This error is a known one: You need to reconnect your Facebook account. Please copy and paste the following link in your browser to see the solution: https://is.gd/fix_fb_invalid_session
But it is impossible to re-connect the page…Any help will be appreciated.
Best Regards
Dear Support Team
same case here.
Actually, it is not possible to remove the page from Business Suite (there are ads running).
To be honest it is quite difficult to find a “secondary account” to use the other workaround you suggested.
I hope to fix this issue.
Best Regards
Hi there! Hope you are doing well!
Any news about Google CMP crtification? I read this topic https://support.google.com/adsense/answer/13554116#zippy=%2Cgoogle-certified-cmps and I hope you will be included in this list soon.
However, could you please tell me, will this CMP certification by Google concern the free version or only the paid version https://www.mooveagency.com/wordpress-plugins/gdpr-cookie-compliance/ ?
Thanks!I wish with all my heart that you get the certification first of all because you deserve it.
You have done an excellent job.
Thanks!
Forum: Themes and Templates
In reply to: [OceanWP] Site crashes on updateHello!
manually update the theme (upload from WP admin – replace the existed theme) fixed the major problem (Site crash).
However (Google) fonts Typography problem is still here. Site cannot display (Google) fonts.
Hope that it will be fixed with the hot-fix you are preparing.
Thanks!
Forum: Themes and Templates
In reply to: [OceanWP] Site crashes on updateHello!
Same problem here:
E_ERROR found at line 236 of /var/www/html/care.gr/wp-content/themes/oceanwp/inc/customizer/controls/typography/webfonts.php. Error code: Cannot redeclare oceanwp_get_local_webfonts_css_data_dir() (previously declared in /var/www/html/care.gr/wp-content/plugins/ocean-extra/includes/compatibility/ocean.php:203)
Thanks!
Forum: Themes and Templates
In reply to: [OceanWP] Some Social Links Do Not Appear (eg TikTok)Hello @abhikr781
Well, disabling plugins in a production web-site could cause serious problems.
So I found this workaround: I replaced OceanWP icons with Gutenberg built-in Social icons.
Thank you for your time and your support!
Christos
Forum: Themes and Templates
In reply to: [OceanWP] Some Social Links Do Not Appear (eg TikTok)Hello @abhikr781
thank you for your reply!
Well, I use the latest versions, OceanWP and Ocean Extra. Everything is up to date.
No I did not add any custom code. I must do it?
I do not use Elementor. Gutenberg is fine for me :).
Thank you in advance!
Christos
This bug was fixed in version 8.6.7.
Thank you!
Forum: Themes and Templates
In reply to: [OceanWP] Author bio in Author pageThank you very much for your swift reply!
Not only an amazing theme but with amazing support too!
Well, as I want to display the bio once on the page I used “ocean_before_content” hook https://docs.oceanwp.org/article/404-before-content
Additionally, I display the user image and URL.
The result looks amazing to me.
Here is the code, hoping to be useful to other OceanWP users.
function owp_add_author_bio() { if ( is_author() ) { $description = get_the_author_meta( 'description' ); if ($description) { $author_id = get_the_author_meta('ID'); $author_gravatar = get_avatar_url($author_id, array('size' => 200)); if ($author_gravatar) { $author_nickname = get_the_author_meta('nickname'); echo '<div class="author-image clr" style="margin-bottom: 10px;">'; echo '<img src="'.$author_gravatar.'" alt="'. $author_nickname . '" style="width: 200px; border-radius: 50%; display:block; margin:auto;" />'; echo '</div><!-- author-image -->'; } echo '<div class="author-bio-description clr" style="margin-bottom: 20px;">'; echo wp_kses_post( $description ); echo '</div><!-- author-bio-description -->'; $user_url = get_the_author_meta( 'user_url' ); if ($user_url) { echo '<div class="author-url clr" style="margin-bottom: 50px;">'; echo '<a href="' . $user_url . '" target="_blank" rel="nofollow">' . $user_url . '</a>'; echo '</div><!-- author-url -->'; } echo '<hr>'; } } } add_action( 'ocean_before_content', 'owp_add_author_bio' );
Once again, thank you very much!
Forum: Themes and Templates
In reply to: [OceanWP] HTML in image captionHello again!
I opened an issue at https://github.com/oceanwp/oceanwp/issues/210
Probably there will be an answer there.
However it is more safe to use
wp_kses_post( $caption )
Regards
- This reply was modified 5 years, 1 month ago by Christos Pontikis.
Forum: Themes and Templates
In reply to: [OceanWP] HTML in image captionHello! I have the same problem.
This is because $caption is escaped. For example in
wp-content/themes/oceanwp/partials/single/media/blog-single.php
// Caption if ( $caption ) { ?> <div class="thumbnail-caption"> <?php echo esc_attr( $caption ); ?> </div> <?php } ?>
You can display HTML removing
esc_attr
However, direct editing theme files is not a recommended approach. A better way should be found ??