yk999
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [OceanWP] How to enable Open Graph in OceanWPHello @skalanter ,
Thank you for your prompt and kind reply.
I understood that the OceanWP theme’s SEO settings alone are basic settings, and advanced settings require plugins for SEO.
I’ll look into using plugins as well.
thank you very much.
I will continue to use OceanWP.Forum: Themes and Templates
In reply to: [OceanWP] How to enable Open Graph in OceanWPHello Shahin,
Thank you for your reply.Doesn’t OceanWP SEO feature work without the Ocean Extra plugin installed?
Doesn’t it just work with only OceanWP theme?I’m using the OceanWP theme, but I didn’t installed Ocean Extra plugin.
I thought the functionality would work even when using the theme alone, as there was no mention of the OceanWP Extra Plugin on the following page.
https://docs.oceanwp.org/article/601-how-to-enable-open-graph-in-oceanwpThank you so much.
Forum: Plugins
In reply to: [Ultimate FAQ Accordion Plugin] Unexpected error in editorHi,
I can specify it with CSS.
I’m sorry to bother you by doing something strange.Thank you very much.
Forum: Plugins
In reply to: [Ultimate FAQ Accordion Plugin] Unexpected error in editorHello jaysupport,
The cause has been found!
I wanted to display an icon at the beginning of the title, so I wrote the Font Awsome code directly in the title part, but it seems that this was bad.
(Ex. <i class = “fas fa-book-open”> </ i> FAQ-Title …)I was able to open the edit screen(existing FAQs) by removing the Font Awsome code and making the title part only characters.
I’ll consider whether to stop adding the icon at the beginning of the title.
Forum: Plugins
In reply to: [Ultimate FAQ Accordion Plugin] Unexpected error in editorThank for your reply.
I understand that it has nothing to do with WP5.9.About page builder, my wordpress environment is
-The theme is OceanWP (OceanExtra is not used in the disabled state)
-using WordPress Gutenberg as an editor.
-enabled Classic Widgets, but I have never used it.
-I use Permalink Manager Lite, Wpforms Lite and SmartSlider3 etc., but I don’t use page builder plugins.I disabled Permalink Manager Lite, but the status of existing FAQs didn’t change.
(Because the function of the permanent link is displayed on the right side of the edit screen)I didn’t notice it, but maybe something went wrong before I raised it to 5.9.
Forum: Plugins
In reply to: [Ultimate FAQ Accordion Plugin] Unexpected error in editorHi jay,
Thank you for your quick reply.
I checked the status.
?It does not happen with new FAQs, only existing ones.
?After disable all my plugins except Ultimate FAQ, all my existing FAQs display that error message on the edit pages.It was my mistake to update UltimateFAQ without knowing that it wasn’t yet compatible with 5.9. I’m sorry.
Is downgrading the UltimateFAQ a possible way to resolve this issue?Thank you for your kind support.
Hello jaysupport,
Thank you for your reply.
I understand the answer.
I’ll check the features of the premium version and consider whether to use it. .
If necessary, I’ll contact you again from the forum you taught me.Thank you very much.
Hello Shahin.
Sorry for the late reply,
(I had sent the reply 2days ago, but it didn’t seem to have been sent.)I understand the situation.
Thank you for trying the reproduction check.I will try again in fresh WP.
Also, it seems that I can manage with the style sheet of the child theme.
So I will close this topic with this.Thank you for your kind support so far.
I’m really thankful to you.Hello Shahin.
Thank you for your kind reply.I share my CPT-codes and screen-shot images.
(I took CPT-codes from “Custom Post Type UI”.)https://drive.google.com/drive/folders/1zYtvxceQwOKAw0OnqPkbTnut_r2rdUGk?usp=sharing
Thank you so much.
Hello Shahin.
Thank you for your reply.I tell you about the troubleshooting results.
(It is the result of not creating a new archive file.)
The result was the same.
I made CPT with the plugin “Custom Post Type UI”, but when I Deactivate this plugin, CPT disappears, and when I activate it, it is displayed, but the result did not change.Certainly I didn’t create a new archive file.
Is it okay to copy from parent>partials>edd folder and use it ?I’m really sorry to ask such a basic question.
Hello Shahin.
Thank you for your kind reply and thank you for sharing the documentation.
I share my code that added to function.php.(the part after “========”)
(The second half of that code worked but not the first half.)I understand how to customize a child theme.
I’ll give it a try!========
function OWP_CPT_entry_meta() {
global $post;
if ($post->post_type == ‘post’ || $post->post_type == ‘myCPT’) {
?>
<ul class=”meta clr”>
<li class=”meta-date”<?php oceanwp_schema_markup( ‘publish_date’ ); ?>><i class=”icon-clock”></i><?php echo get_the_date(); ?>
<li class=”meta-cat”><i class=”icon-folder”></i><?php the_category( ‘ / ‘, get_the_ID() ); ?><?php
}
}
add_filter(‘ocean_blog_entry_meta’,’OWP_CPT_entry_meta’);function OWP_CPT_single_meta() {
global $post;
if ($post->post_type == ‘post’ || $post->post_type == ‘myCPT’) {
?>
<ul class=”meta clr”>
<li class=”meta-date”<?php oceanwp_schema_markup( ‘publish_date’ ); ?>><i class=”icon-clock”></i><?php echo get_the_date(); ?>
<li class=”meta-cat”><i class=”icon-folder”></i><?php the_category( ‘ / ‘, get_the_ID() ); ?><?php
}
}
add_filter(‘ocean_blog_single_meta’,’OWP_CPT_single_meta’);`
========Thank you for everything.
Forum: Themes and Templates
In reply to: [OceanWP] How to let CPT take over the layout of a regular post?hello.
I’m trying to proceed as it is.
It has not been completely resolved yet, but it is okay to close this case.
Thank you so much.Forum: Themes and Templates
In reply to: [OceanWP] How to let CPT take over the layout of a regular post?Hello.
Thank you so much again.I understand your reply.
I’ll try that way(via Appearance > customize > typography settings) for now,
and try to specify and set the element in the stylec.css file.Thank you for your kind reply.
Forum: Themes and Templates
In reply to: [OceanWP] How to let CPT take over the layout of a regular post?Thank you for your prompt response!
The altering Layouts worked. (No Sidebar, Left or Right Sidebar)
(The sidebar has disappeared, and the full width can be specified.)However, I couldn’t find much other useful information.
For example, I didn’t know how to specify the font type (font family) of the h2 title, or the width of the content itself (I set the maximum width of the content to about 70% of the total width.Is there a way to reflect the settings for regular posts in custom posts?
Is there any way other than specifying the style in css for custom posts?Thank you.