sudoranger
Forum Replies Created
-
Forum: Plugins
In reply to: [Redux Framework] Fonts crashed after updateI can confirm you that Huca is now working as expected on 4.1.8. I would like to send you my deepest appreciation and thank you for the awesome fix.
Have a nice day ahead!
Forum: Plugins
In reply to: [Redux Framework] Fonts crashed after update@dovyp That make sense, since they need Redux for their themes after all.
As you can see here on Line 38:
require_once ABSPATH . ‘wp-content/plugins/redux-framework/ReduxCore/inc/fields/typography/field_typography.php’;
In 4.1.7, the folder is now called redux-core instead of ReduxCore which is non existence hence the fatal error for required_once() since it can’t find it. When I make the changes, it introduce all sorts of new bugs like OMG. For example, /home/***HIDDEN***/public/wp-content/plugins/nc-common/includes/redux-framework/fields/typography/typography.php on line 397:
Fatal error: Uncaught Error: Call to undefined method Redux_Functions::parseCSS() in…
Perhaps we should continue in the email because some data might be sensitive to post here. I will update this thread once we figure out the issue here.
- This reply was modified 5 years, 10 months ago by sudoranger.
Forum: Plugins
In reply to: [Redux Framework] Fonts crashed after update@dovyp I have sent you the theme through wetransfer. This is obviously against the ToS of ThemeForest but please don’t let anyone know about it. 😀
I can confirm you that the above was tested on 4.1.7. I rolled back to 3.6.18 for the time being.
// shim: FYI, Huca was last updated on 25 January 19 so some dinosaur codes might have existed.
Thank you.
- This reply was modified 5 years, 10 months ago by sudoranger.
Forum: Plugins
In reply to: [Redux Framework] Fonts crashed after updateStill breaking, using 4.1.7 on HUCA theme.
Warning: require_once(/home/***HIDDEN***/public/wp-content/plugins/redux-framework/ReduxCore/inc/fields/typography/field_typography.php): failed to open stream: No such file or directory in /home/***HIDDEN***/public/wp-content/plugins/nc-common/includes/redux-framework/fields/typography/typography.php on line 38
Fatal error: require_once(): Failed opening required ‘/home/***HIDDEN***/public/wp-content/plugins/redux-framework/ReduxCore/inc/fields/typography/field_typography.php’ (include_path=’.:/usr/share/php’) in /home/***HIDDEN***/public/wp-content/plugins/nc-common/includes/redux-framework/fields/typography/typography.php on line 38
There has been a critical error on your website.Line 38: require_once ABSPATH . ‘wp-content/plugins/redux-framework/ReduxCore/inc/fields/typography/field_typography.php’;
Nevermind! I figured and got it working.
add_filter('og_og_title_value', 'my_og_og_title_value'); function my_og_og_title_value($title) { if ( is_home() ) { return __('This is extra home title!', 'translate-domain'); } return $title; }I’m not sure why the previous filters didn’t work though! But at least now the preview is working as expected.
- This reply was modified 6 years, 4 months ago by sudoranger.
Thank you so much for the fix!
All my cards thumbnails (og:image) are working correctly and showing the right featured images as of 2.7.4
The article was already published 2 weeks ago. At that time I was using a previous version of this plugin. So, all my card thumbnails were using the “smaller” image version.
After I updated the plugin to 2.7.3 few days ago, I tried to refresh all my post cards manually using Facebook Debugger, Telegram @webpagebot, and Twitter Validator so that it will change the smaller thumbnail to bigger thumbnail.
Most of my posts that don’t have additional images (only 1 image which is the featured image) in the post were refreshed correctly. They are now showing the “larger” image for the card thumbnail instead. This is correct.
However, there are some posts that don’t show the correct thumbnails after I refresh. It seems that it is using the second image from the post as the card thumbnail. When I checked the image source of the thumbnail, it is using the second image instead of the featured image that is set in the WordPress post setting.
I named all my image files for that post as:
this-is-just-a-test.jpg (this is the featured image file)
another images within the posts were renamed as:
this-is-just-a-test-1.jpg
this-is-just-a-test-2.jpg
this-is-just-a-test-3.jpgSo, when I refreshed the card thumbnail, it has changed to using “this-is-just-a-test-1.jpg” as the card thumbnail instead. It is not using the “this-is-just-a-test.jpg” file.
I want it to use “this-is-just-a-test.jpg” not “this-is-just-a-test-1.jpg”. So this is obviously wrong. It must be the looping, or how you fetch the featured image file due to my file name scheme? I have not try other filenames.
I can’t publish my blog URL for privacy reason. If you have other “privacy-friendly” means that I can contact you to see the problem on my live website, please let me know. I don’t even know how to post a screenshot here. Please switch to GitHub or something else, I really like your plugin. It’s simple and straightforward. I registered this account just to report this exact bug.