vforastar
Forum Replies Created
-
Forum: Plugins
In reply to: [SEO Plugin by Squirrly SEO] Og, twitter card image issueThank you very much Calin, changed the size as you said, its a 510*385 px jpg image. The issue is fixed with twitter card but linkedin preview is still the same. Any suggestions? Thanks once again ??
Forum: Plugins
In reply to: [Getwid - Gutenberg Blocks] Theme plugin conflictHi Dymtro, hope all is well. Thank you for looking into this.
Here’s the link
Since its a staging site, it’s in privacy mode. Please enter vforastar as both username & pw to view the page.
Forum: Plugins
In reply to: [Docxpresso] Footnotes issueThanks Eduardo, I saved .docx as filtered html webpage in MS word. It does the job plus I got a hyperlinked TOC. Obviously, I wouldn’t have explored MS word options if I haven’t found your plugin. Thank you so much once again.
Forum: Plugins
In reply to: [Getwid - Gutenberg Blocks] Theme plugin conflictHi, I looked in chrome inspect and found that featured image is fixed after I removed the checkbox from height 100% and width 100%. But I don’t know how to put this in code. This is copied from chrome inspect tool.
.wp-block-column>.wp-block-getwid-template-post-featured-image:only-child img { /* height: 100%; */ /* width: 100%; */ object-fit: cover;
Also, how can I fix the second column width with post title, excerpt etc?
Really appreciate your help. Thanks ??
Thank you ??
Forum: Plugins
In reply to: [Docxpresso] Footnotes issueHi, I figured out the numeral size thing by changing the endnote/footnote reference style in MS word, by increasing the font size. Now only issue remains is how to navigate from footnote/endnote back to the main text, where clicked on footnote.
Forum: Themes and Templates
In reply to: [Neve] Container width broken after theme updateHi, sorry for posting in someone else’s thread but I faced a similar issue and the following helped me:
1. installed a customizer import export plugin and worked on main theme without having any child theme.
2. Exported customizer options , created child theme but didn’t activated it, went to preview child theme, imported customizer options and activated child theme.
3. This is the borrowed child theme’s code :
function your_theme_enqueue_styles() { $parent_style = 'parent-style'; wp_enqueue_style( $parent_style, get_template_directory_uri() . '/style.css'); wp_enqueue_style( 'child-style', get_stylesheet_directory_uri() . '/style.css', array($parent_style), wp_get_theme()->get('Version') ); } add_action('wp_enqueue_scripts', 'your_theme_enqueue_styles');
No more issues with layout after this. Also don’t know if theme author has already debugged the issue in update.
Forum: Themes and Templates
In reply to: [Neve] Container width broken after theme updateHi Rodica, I was going to post this, its occuring with child theme in my case. Neither customizer layout options nor options in editing post are working. With neve 2.6.6 there’s no layout issues with child theme.
also certain options of customizer doesn’t show the live effect in real time, once published then only I can see the changes.
Hi Dmytro, your code works, thank you so much ??
You’re right, the theme (Neve theme) was causing it.
Forum: Themes and Templates
In reply to: [Neve] Hiding Featured Images on the Blog Archive pageTry copying the following code to functions.php, i’m using it to hide featured image on single posts. I don’t know about wp much, found this on google, if it works, good for you, if not will suggest to wait, maybe someone from neve will help you ??
function wordpress_hide_feature_image( $html, $post_id, $post_image_id ) { return is_single() ? '' : $html; } // add the filter add_filter( 'post_thumbnail_html', 'wordpress_hide_feature_image', 10, 3);
Forum: Plugins
In reply to: [WP Post Nav] Not working in custom post typeAm on flywheel John. Neverthless your suggestion worked ?? Thank you so much.
Forum: Plugins
In reply to: [WP Post Nav] Not working in custom post typeHi John, am still on local platform, haven’t gone online. Sharing the links for you:
1. CPT ipcases, taxonomies: copyright(fair-use etc.), patent(novelty etc.)
https://084ca9e1.ngrok.io/ipcases/ip-case-3/
2. Normal post type taxonomies: category (uncategorized)
https://084ca9e1.ngrok.io/hello-world/
3. Normal post type like 2. but nav links doesn’t show up
Hello @optimole , thank you for replying mate. I used the customizer settings to place the header image. But as soon as I place a featured image in a blog post, it becomes the header image for that post. This is what I’ve found so far, on line 827 0f Abstract_builder.php, code for featured image:
$css_setup['background-image'] = 'url("' . esc_url( $featured_image ) . '")';
I tried to copy paste this file in my child theme and tried to edit but it doesn’t work , it only works when I change the theme file. Don’t want to do that, so now am trying to figure out the issue with child theme.
Forum: Plugins
In reply to: [WP Post Nav] Not working in custom post typejust to let you know ,i can see custom post type in settings but the navigation links are not visible in front end, will really appreciate your guidance! Thanks
Forum: Plugins
In reply to: [LiteSpeed Cache] Not getting domain key@qtwrk figured it out , had to create a firewall rule in cloudflare to allow ip, what i did earlier was created an whitelisting IP access rule. Though i don’t understand the difference between these two, am glad to get connected with litespeed. Hope to configure it properly. Thank you very much @qtwrk ??