[email protected]
Forum Replies Created
-
Forum: Plugins
In reply to: [WordPress REST API (Version 2)] Unable to create new user through Rest APII was using API Beta 9.
I stopped using it and switched over to API JSON User with a prebuilt solution I had found. I’ll try again next time I start a new project, hopefully I get it working next time. Thank you for the response.Forum: Plugins
In reply to: [EWWW Image Optimizer] Thumbnail is not reducedThanks for the response but I disagree. I’m only talking about compression. I took that image offline and compressed it and reduced it from 65kb to 30kb without changing the dimensions.
It seems like this thumbnail size was skipped.
I’m using Dante theme if that has anything to do with it.Forum: Plugins
In reply to: [EWWW Image Optimizer] Thumbnail is not reducedsome of the images have been shrunk but not that one, and I’m not sure why.
Forum: Plugins
In reply to: [Gravity Forms Eway] Transactions are not going throughif i compare the successful order which i just made to the one that previously was not successful it is that the order field of the product is missing.
that’s probably why it didn’t even notify eway and that’s why there’s no record.
the product field appears based on a selection of the user.
it seems odd how the user has managed to enter the price field but the product field idd not appear.
that could possibly be a browser issue. i’ll try all available browsers and post back my result.
i set all the fields to be required even though they are invisible until the other field is selected, and when they do appear now, they’ll be required.
i’ll see if that makes a difference.Forum: Plugins
In reply to: [Gravity Forms Eway] Transactions are not going throughdownloaded logging and turned it on in settings > logging > turned it on all messages for everything.
https://www.gravityhelp.com/downloads/Forum: Plugins
In reply to: [Gravity Forms Eway] Transactions are not going throughhi. we were waiting for the client to provide us with information identifying what the issue could’ve been but we haven’t been able to identify any issues since the numeric issue that we fixed above.
we are getting more than several transactions that are showing on gravityforms but not on eway. i’ve updated to the latest version of gravityforms and gravityforms eway and what i’d like to do next is start logging as you suggested because otherwise eway are not able to provide any information without the full transaction information.
how do i turn on logging? where are logs saved?Forum: Plugins
In reply to: [Gravity Forms Eway] Transactions are not going throughI use a currency field and copy that field into the free product price field using javascript and format it adding $ and .00. I use javascript because I’ve created logic that gravityforms wasn’t able to handle from the UI.
So if I put in $10.50 it would add $ $10.50.00 which is invalid.Forum: Plugins
In reply to: [Gravity Forms Eway] Transactions are not going throughHi Ross,
Thank you so much for getting back to us.
We’ve chased the issue up with eWay and they helped us find the issue. We were formatting the donation amount wrong when there were decimals.Do you still recommend to install GravityForms logging and the alpha version?
Is it safe to leave GravityForms logging on all the time?Forum: Plugins
In reply to: [Timeline Twitter Feed] Encodingfix: the regular expression needs to exclude tags the start with ‘&’.
/includes/class-timeline-twitter-feed-shortcode.php
line 147:
$text = preg_replace( '(#([a-zA-Z0-9\_]+))', '<a href="https://twitter.com/search?q=%23\\1" target="_blank" rel="nofollow">\</a>', $text );
change to:$text = preg_replace( '/(?<!&)#(\w+)/i', '<a href="https://twitter.com/search?q=%23\\1" target="_blank" rel="nofollow">\</a>', $text );
It needs to be fixed in other places, hopefully you can implement the solution across the plugin on the next update.
Forum: Plugins
In reply to: [Timeline Twitter Feed] Encodingidentified the issue is related to hashtags converted to links before the text is set as html symbols.
Forum: Plugins
In reply to: [Timeline Twitter Feed] Encodingfunny enough it’s the symbols that are encoding correctly.
plain: ‘
symbol: ‘This is how the tweet came out: Plain: ' Symbol: ‘
Forum: Plugins
In reply to: [Posts 2 Posts] Search include relationshipsHi, thanks for responding.
I mean if I have a custom post type ‘person’ and it’s related to custom post type ‘company’. Then searching through custom post type ‘person’ would bring back results if the keyword matches in the related company.
I could do it manually by allowing multiple custom post types and then for every result that is not a person, I check it’s relationship. But that would be extra work, thought maybe that could be automated as that would probably be useful functionality.Forum: Plugins
In reply to: [Posts 2 Posts] [Plugin: Posts 2 Posts] Post2post with Event Espressoi think i got it.
event espresso > template settings > use custom post types feature = yes
i still haven’t properly tested, but managed to get two events in relationship. trying to get the templates working now which will allow me to test if the relationship on the front end works smoothly.
p2p_register_connection_type( array(
‘name’ => ‘espresso_event_to_espresso_event’,
‘from’ => ‘espresso_event’,
‘to’ => ‘espresso_event’,
‘reciprocal’ => true,
‘admin_column’ => ‘any’,
‘cardinality’ => ‘many-to-many’
//
) );Forum: Plugins
In reply to: [Posts 2 Posts] [Plugin: Posts 2 Posts] Post2post with Event EspressoI’ve noticed that I can turn on the custom post types from the template options. But when I create a post using the event section, it doesn’t have any of the options of the ones I create from the event espresso section and it doesn’t have the post2post admin box for the relationship after setting the relationship up for custom post type: espresso_event
Forum: Plugins
In reply to: Duplicate gravity form post for WPML multilingual postwow this was a long time ago. ??
the process i ended taking was:
translating on client side.
client confirms translation.
on post it creates a post and puts all the translation fields in custom fields.
that means there’s only one language to a post.this is the wrong way of doing it, it should’ve been creating two separate posts and connecting them. if i had given it another try now i probably would’ve gotten it right, i just didn’t have enough time back then to get it done properly.