dropshot
Forum Replies Created
-
Sorry. I’m not sure if it was right to bump in to this thread.
Posted a new thread:
https://wordpress.org/support/topic/bbpress-notifications-not-sent-to-requested-receivers/Email Log is installed and gives some weird answers.
I’m afraid it isn’t very clear what the issue is @poppykalash
Aren’t the notifications sent? Or are the notifications sent but the content shortcode doesn’t work? Maybe we can work together to solve this.
I’m having an issue with the notification to be sent.
I’ve tested to send a notification for new “post” published. This works fine. Email is sent! 🙂
But for the bbPress custom post types it doesn’t seem to work. When setting up a new notification you can chose from bbPress custom post types Forum, Topic, Reply
I’ve set up a notification for all of them.
New Forum published
New Topic published
New Reply publishedBut none of them seems to work. Any ideas @voltronik ?
Forum: Developing with WordPress
In reply to: How to use unregister_default_headersThanks for your reply!
Thanks for confirming my code and supplying a suggestion.
It’s a mystery to me that no one has raised this question before… TwentySeventeen being a deafult theme…
Finally got your workaround to work. Had to put the CSS within the action hook
customize_controls_print_stylesAgain, thanks!
Forum: Themes and Templates
In reply to: [Twenty Seventeen] Unregister deafult header images – HOW?Thanks for your advice.
I’m not sure but it seems like TwentySeventeen doesn’t follow codex.
So much pain working with it… 🙁
Forum: Themes and Templates
In reply to: [Twenty Seventeen] Unregister deafult header images – HOW?@anevis
How?? I installed the plugin you told me to…
It says the parent theme function has prio 10 and my function has prio 11.
Forum: Fixing WordPress
In reply to: How to add child theme styles correctlyBut the example I was referring to uses the TwentySeventeen theme.
Forum: Themes and Templates
In reply to: [Twenty Seventeen] Unregister deafult header images – HOW?@anevis
Thanks for the suggestion.
The function that’s registerring the default headers has priority 10.
What am I missing? Am I using the wrong key? It seems to be registered as ‘deafult-image’
Forum: Fixing WordPress
In reply to: How to add child theme styles correctlyOk. Not at all confusing…
Why would you refer to misleading docs?
Forum: Themes and Templates
In reply to: [Twenty Seventeen] Unregister deafult header images – HOW?@anevis
Thanks for your reply. Unfortunately that runs over my head…
There is a function called unregister_deafult_headers()
How can I use it?
Yes, it must be called after the register_deafult_headers()
I’m not sure how… Is there another hook?
Any help is much appreciated. Thanks.
Forum: Fixing WordPress
In reply to: How to add child theme styles correctlyThanks Steve, I’m confused. Now you’re referring to yet another text that contradicts your first reply.
If your child theme style.css contains actual CSS code (as it normally does), you will need to enqueue it as well.
The complete recommended example from that link is to actually enqueue the child themes CSS…
What am i missing…???
Forum: Fixing WordPress
In reply to: How to add child theme styles correctlyHi Steve,
Thanks for your reply!
According to wordpress documentation you should.
https://make.wordpress.org/training/handbook/theme-school/child-themes/child-themes-twentyseventeen/
Your Child Theme’s style.css file can be empty. But if it contains CSS code, as it usually will, you will need to enqueue it as well. Setting ‘parent-style’ as a dependency will ensure that the child theme stylesheet loads after it.
function mychildtheme_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 ) ); } add_action( 'wp_enqueue_scripts', 'mychildtheme_enqueue_styles' );In the example of the training they are creating a childtheme for twentyseventeen.
So, according to official (?) wordpress documentation I should enqueue the child theme css. Any thoughts on that?
Forum: Plugins
In reply to: [Contact Form 7] Validation errors occur – without errors!Since system doesn’t like url-s, is there any chance you can find a reason without it?
What can cause the message “One or more fields have an error. Please check and try again.” even though everything is entered as required?
Forum: Plugins
In reply to: [Contact Form 7] Validation errors occur – without errors!“This post has been held for moderation by our automated system. It will be reviewed within 72 hours.”
???
Forum: Plugins
In reply to: [Contact Form 7] Validation errors occur – without errors!Forum: Plugins
In reply to: [bbp style pack] Logged in redirect issueThanks for you reply!
I added the redirect to my functions.php instead. Works fine.