pawciak
Forum Replies Created
-
Forum: Plugins
In reply to: [CF7 to Airtable] Form not submiting / sending data to airtableWell i’m surprised with your reply – this error message is not from CF7 but from your plugin. From the file entry.php, line 105:
$submission_response = __( ‘Due to an error, your message could not be sent. Please try again later.’, ‘add-on-cf7-for-airtable’ );
My form works perfectly while sending directly over the email. It is not working when trying to use your solution. Any ideas why?
i have the same issue.
@tushar – did you find any solution?
Forum: Plugins
In reply to: [Crelly Slider] Create custom arrowsamazing – thanks Fabio!! ??
Forum: Plugins
In reply to: [BuddyDrive] Buddydrive page – blankCool! do you know (more less) when we can expect an update? Its a matter of days, weeks or rather month or two? Im asking because one of mine clients love your plugin so would be awesome to know the ETA of that ??
Forum: Fixing WordPress
In reply to: Set default image title based on post titlehmm being honest i dont even know where to start. Do you have any code tips?
I wrote something like that:
add_filter( 'wp_insert_attachment_data', 'wpq_insert_attachment_data', 10, 2 ); function wpq_insert_attachment_data( $data, $postarr ) { $append = get_the_title( $post->post_parent ); // Append to the image caption field: if( false == stripos( $data['post_excerpt'], $append ) ) { $data['post_excerpt'] .= $append; } // Append to the image description field: if( false == stripos( $data['post_content'], $append ) ) { $data['post_content'] .= $append; } return $data; }
- This reply was modified 8 years, 1 month ago by pawciak.
Forum: Plugins
In reply to: [WooCommerce] woocommerce product addon input – display in ordersAnybody?
Forum: Plugins
In reply to: [Image Photo Gallery Final Tiles Grid] Custom post type – not workingHi! thanks for the quick info. Provided code is mine – thanks to that functions i have additional custom post type. But i asked it here in purpose, i thought that maybe you met such issues with other users.
what do you mean that gallery doesn’t handle posts? to be clear – i dont want to make a tiled gallery of posts. I want to make a tiled gallery (of images) INSIDE a post.
and in regular posts plugin works, in custom post – it doesnt.
Forum: Fixing WordPress
In reply to: RSS import – wordpress.com to wordpress standaloneyes i tried. still the same issue. excerpt as content. well probably i will not be able to solve it so i will mark this post as solved. thanks anyway.
Forum: Fixing WordPress
In reply to: RSS import – wordpress.com to wordpress standalonea friend of mine has own company website (based on standalone wordpress) and blog (wordpress.com). She decided to keep both, yet to feed also company page with blog posts. so i assume i am not able to prepare such import?
Forum: Plugins
In reply to: [WP Customer Reviews] Unicode supportEverything works like a charm! The only thing is that past reviews of course had an old collation but ive changed them manually.
Forum: Plugins
In reply to: [WP Customer Reviews] Unicode supportThank you! Dzi?kuj?:)
Forum: Plugins
In reply to: [WP Customer Reviews] Unicode support@bardzo – did you solve your problem?
Forum: Everything else WordPress
In reply to: wordpress commercial plugins – careersHi Andrew!
damn, so I wasn’t precise in this matter – in fact not. I’m looking for plugin/extensions for wordpress which (as company) are hiring people in provided by me area (webdesign/PM).Hey Guys,
Sorry for refreshing the subject. But I think it is somehow related to my issue. What I’ve wanted to achieve with wp-types was a kind of event addon. So simply I’ve added custom field with date and ok – posts appear with that. No issues. But a friend of mine (website owner) asked me to develop one more thing – calendar. Simple as it is – months with days and arrows to navigate.
But I have no clue how to connect it with wp-types. Have anybody in the past tried to achieve something simillar?
THanks!
thanks a million!