Pixelbart
Forum Replies Created
-
Forum: Plugins
In reply to: [Helpful] Hide Helpful question on all pages after votingThank you @anefarious1 ??
Great idea!
Forum: Plugins
In reply to: [Helpful] Hide Helpful question on all pages after votingHi @anefarious1
I’ve added a new option. Users can only vote once on the entire website. (general -> only once)
Forum: Plugins
In reply to: [Helpful] Time Zone Setting & Text Mode in Editor Not WorkingTimezone and wp_editor are fixed! ??
Forum: Plugins
In reply to: [Helpful] Time Zone Setting & Text Mode in Editor Not WorkingThere will be an update soon. I forgot that WordPress already has an option for timezones.
Forum: Plugins
In reply to: [Helpful] Time Zone Setting & Text Mode in Editor Not Working@anefarious1 You can now adjust the timezone in the system settings from helpful. Unfortunately, I had to remove the editor because I could not find a solution for it.
So you can paste whatever you want in the simple html textarea.
Forum: Plugins
In reply to: [Helpful] Time Zone Setting & Text Mode in Editor Not Working@anefarious1 i’ll check it out today and push an update. ??
Forum: Plugins
In reply to: [Helpful] Custom post types not appearing on general settings@prabhuswain91gmailcom any response to this? I do not like to have not resolved bugs. ??
Forum: Plugins
In reply to: [Helpful] Link after votingYou can use HTML. I have not made any limitations.
I use:
“Thanks for your vote! You also want to ask your visitors a question? Then download the (linked)WordPress plugin(linked) for free!”
You can use all the buttons that are present in the editor.
Demo (German): https://klakki.me/alles-amphi-oder-was-teil-2/
- This reply was modified 5 years, 10 months ago by Pixelbart.
Forum: Developing with WordPress
In reply to: Fix “wp_register_script was called incorrectly” issueGreat to hear! Have fun with WordPress! ??
Forum: Developing with WordPress
In reply to: Fix “wp_register_script was called incorrectly” issue@chantaspell sorry i forgot this method. Add this:
add_action('wp_enqueue_scripts', array( $this, 'register_rml_scripts' ) );
inside
public function rml_run() { // after this
Forum: Developing with WordPress
In reply to: Fix “wp_register_script was called incorrectly” issueUse
add_action( 'wp_enqueue_scripts', array( $this, 'rml_scripts' ) );
and
add_action( 'wp_enqueue_scripts', array( $this, 'rml_styles' ) );
insteed of
add_action( 'plugins_loaded', array( $this, 'rml_scripts' ) );
and
add_action( 'plugins_loaded', array( $this, 'rml_styles' ) );
inside your constructor or
rml_run
method.Ref: https://codex.www.ads-software.com/Plugin_API/Action_Reference/wp_enqueue_scripts
- This reply was modified 5 years, 10 months ago by Pixelbart.
Forum: Developing with WordPress
In reply to: Custom post thumbnail not workingYou have to use
$img = get_the_post_thumbnail($post);
as @sterndata said.https://developer.www.ads-software.com/reference/functions/get_the_post_thumbnail/
Forum: Fixing WordPress
In reply to: Website Link image, title and description@jamesgoldbeats you need to search for “open graph” or use a seo plugin like Yoast.
Forum: Plugins
In reply to: [Helpful] Custom post types not appearing on general settingsif no CPTs (custom post types) are displayed then there will be none. It may be that the CPT is not public and therefore it does not work.
I have just tested again and it worked immediately.
In the example section you can see, how post types are shown. So you can check it for yourself. https://codex.www.ads-software.com/Function_Reference/get_post_types
Forum: Fixing WordPress
In reply to: Publishing fail after update to wordpress 5.0