another-webmaster
Forum Replies Created
-
Note for developer:
Starting in WordPress 4.3, regardless of the PHP version in use on a server, WordPress will throw a deprecated notice when one of the PHP 4 style constructors is called specifically for widgets.Please take a look here.
It seems following file:
login-with-ajax-widget.phphas it on line 16.
Maybe, saying just maybe this already solves it?:
parent:: __construct(false, $name = 'Login With Ajax', $widget_ops);@caimin_nwl
WP v4.3
After activation following msg is shown in the admin:
Notice: The called constructor method for WP_Widget is deprecated since version 4.3.0! Use __construct() instead.Note: We see this while debugging on the dev server
We will look forward to the fixes.
Thank you for the time and effort.
Forum: Plugins
In reply to: [Requirements Checklist] Radio buttons issueThank you for responding.
Such a shame (meaning it is not supported), we tried to get the best of both worlds.
We will have to do it ourselfs. (already working on it till we saw accidentally your plugin) Leaving radio buttons out for this is a no go for us.
I will leave the review as is because for others it may not be an issue.
Cheers.
Forum: Plugins
In reply to: [Meta Box] No seeting page after installThere is none because you have to do some yourself first.
Maybe is following the steps as shown here helpfull.
But you as developer will know that yourself.Note: there is NO demo folder(clumsy from the developers/confusing for the user) to find in the archive (here on the repository) as said on the Getting started. But here is the demo page on github to find.
Forum: Plugins
In reply to: [Meta Box] Can't get custom field value to display in the frontendTo be honest, you have more issues, seen that code imho.
Here just an example for how it could like:add_filter( 'rwmb_meta_boxes', 'register_meta_boxes' ); function register_meta_boxes( $meta_boxes ) { $prefix = 'rw_'; // 1st meta box $meta_boxes[] = array( 'title' => 'Project Description', 'pages' => array( 'portfolio' ), 'context' => 'normal', 'priority' => 'high', 'fields' => array( array( 'name' => __( 'Text', 'your-prefix' ), 'id' => "{$prefix}text", 'desc' => __( 'Give a project description.', 'your-prefix' ), 'type' => 'text', 'clone' => false, ), ) ); // 2nd meta box $meta_boxes[] = array( 'title' => 'Website Link', 'pages' => array( 'portfolio' ), 'fields' => array( array( 'name' => __( 'URL', 'your-prefix' ), 'id' => "{$prefix}url", 'desc' => __( 'Link to the website (include http:// )', 'your-prefix' ), 'type' => 'url', ), ) ); return $meta_boxes; }Above function is tested (back- and front-end) and works(add in functions.php) together with following code (add in the template).
<?php echo '<span class="project-description">'. rwmb_meta( 'rw_text' ) . '</span><br /><span class="weblink"><a href=" ' . rwmb_meta( 'rw_url' ) . '">website link</a></span>' ; ?>Play with it and change to your own belongings. Reading the demo.php AND the manual can/will help you further.
Forum: Plugins
In reply to: [KIA Subtitle] include subtitle also in search?Probably is my lack of english debet on the (logical/correct) answer on the question as given.
What I want/meant is NOT how to put the subtitle on the search page but how to search through subtitles also.
When using Relevanssi plugin it seems not standard to do also a search through the subtitles.
I added some code in the Relevanssi plugin (yes it actualy should not be done) and now it does a search also for the subtitle.Thank you for answering so fast, and sorry for responding this late.
Forum: Plugins
In reply to: [Highlight Search Terms] Searchengines in Code (js)Thank you for the fast respond.
It gives a little more inside and explains why they are there.
Forum: Plugins
In reply to: [Universal Star Rating] Dev should debug before launchingJust a hint, if still updating and debugging as you said 😀 you could maybe update/change also in universal-star-rating.php @line 118 the capability?
That has an argument which is deprecated since version 2.0,
8should/could be'manage_options'or some:)Cheers
Forum: Plugins
In reply to: [Universal Star Rating] Dev should debug before launchingMr Smartass lmao, still nice for fixing it. It was creating lots of input on debug logfile therefore.
And I should/want mention that it is a great plugin and thats most important!
Forum: Plugins
In reply to: [KIA Subtitle] KIA subtitle ssl errorsChapeau!
Didn’t download the plugin from github again but just replaced it with correct code. Seems to works as belongs.
Thank you for the amasing fast support/update.(and for the plugin ofcourse, because that is where I went for!)
I can’t mark it as solved else I would.
Forum: Plugins
In reply to: [KIA Subtitle] KIA subtitle ssl errorsThank you for the fast responce!
Result logfile showing:
Notice: register_uninstall_hook was called <strong>incorrectly</strong>. Only a static class method or function can be used in an uninstall hook. Please see <a href="http://codex.ww.wp.xz.cn/Debugging_in_WordPress">Debugging in WordPress</a> for more information. (This message was added in version 3.1.) in wp-includes\functions.php on line 3049Forum: Plugins
In reply to: [KIA Subtitle] KIA subtitle ssl errorsFirst of all, great plugin!
The only “nasty” is, the logfile which grows (every few seconds 7 lines is a lot!) because that issue ->Strict Standards: bla bla
Would be nice if you could find time to solve it Helga.
Forum: Plugins
In reply to: [Taxonomy Images] Image Uploader box is too smallsame issue here, too small and not having a horizontal scrollbar so no option to select an image.
Okay will look @github..thnx.