bridieamelia
Forum Replies Created
-
Thank you. It is:
[feedzy-rss feeds="https://thedriven.io/feed/" max="3" lazy="yes" feed_title="no" refresh="12_hours" sort="date_desc" meta="author, date" summary="no" summarylength="160" size="258" price="yes" columns="3" template="style2" ]
- This reply was modified 2 years, 4 months ago by bridieamelia. Reason: incorrect URL
- This reply was modified 2 years, 4 months ago by bridieamelia.
- This reply was modified 2 years, 4 months ago by bridieamelia.
Forum: Plugins
In reply to: [Post grid and filter ultimate] Custom Post Types supportI second this!
Forum: Themes and Templates
In reply to: [Pinnacle] Similar Portfolio IssuesFor those looking for the feature request solution, you can replace lines 6-10 in bottom portfolio-carousel.php with this code:
$terms = get_the_terms( $post->ID, 'portfolio-type' ); if(!empty($text)) { echo '<h3 class="sectiontitle">'; echo $text; echo '</h3>'; } else if(!empty($terms)) { echo '<h3 class="sectiontitle">Other '; $output = array(); foreach($terms as $term){ $output[] = $term->name;} echo implode(', ', $output); echo '</h3>'; } else {
Forum: Themes and Templates
In reply to: [Pinnacle] Similar Portfolio IssuesSorry, to clarify, I mean the feature request for the “Similar Projects” title
Also, it appears that the default single portfolio chosen in theme options is also not working.
Forum: Plugins
In reply to: [Simple Hooks for WooCommerce] Will not let me add img tagsAh – my colleague updated to 5.3.2 – it may be that the plugin needs updating?
Forum: Themes and Templates
In reply to: [Schema Lite] Pagination does not workBump, does anyone answer these?
Forum: Plugins
In reply to: [GravityExport Lite for Gravity Forms] Field formatting and fields not savingOne more note: for some reason, this only works if the hidden fields in teh same form are in a multi-tabbed form, ie in the next section.
Forum: Plugins
In reply to: [GravityExport Lite for Gravity Forms] Field formatting and fields not savingPS, I also used the code above as part of that solution ??
Forum: Plugins
In reply to: [GravityExport Lite for Gravity Forms] Field formatting and fields not savingDoeke, I have solved the price dropdown number format issue!
Will leave here, maybe it will help you or someone else.
So, I have used this snippet from Spivurno on github which maps field values to other fields:
https://gist.github.com/spivurno/7029518
And then, using giving a value to each price dropdown option (in my case number of tickets bought), and can then assign to two hidden fields:
1. {field-id:price}
2. {field-id:value}This saves the separate number values into two more columns, thus leaving clean data for my client to use in the CSV export.
Thanks again for all your help!
Forum: Plugins
In reply to: [GravityExport Lite for Gravity Forms] Field formatting and fields not savingWith the number issue, I have found one thing that may help: if I select the checkbox “show values” in the dropdown product within form edit tab, and give the ticket options some values (the actual price, 15, in number only for example), my output in the CSV export is now 1515 instead of 31515.
But it is still picking up the price also…is this also a separable field issue?
Forum: Plugins
In reply to: [GravityExport Lite for Gravity Forms] Field formatting and fields not savingSo, I deactivated literally all of my plugins except GF and yours, and also resaved the settings, and also submitted another form, but the address still does not separate.
PS not sure what you mean about the credit card field – the type is in another column if that’s what you mean.
Not that I think any of these would be an issue, but in addition to code you’ve given me, this is the only code in my functions file.
//Page Slug Body Class function add_slug_body_class( $classes ) { global $post; if ( isset( $post ) ) { $classes[] = $post->post_type . '-' . $post->post_name; } return $classes; } add_filter( 'body_class', 'add_slug_body_class' ); // Do not append GF forms URLS with anchor */ add_filter( 'gform_confirmation_anchor', '__return_false' );
Not sure that helps?
Forum: Plugins
In reply to: [GravityExport Lite for Gravity Forms] Field formatting and fields not savingThanks Doeke, the number code work for plain price fields but not for dropdown select price fields.
For example, for the entry “3 tickets for $15 ($ 15.00)”
I get 31515.
No luck on the address thing ?? will keep searching for a clash.
Forum: Plugins
In reply to: [GravityExport Lite for Gravity Forms] Field formatting and fields not savingI think the number issue is going to use something like this:
$number = GFCommon::to_number( $value, '' );
Forum: Plugins
In reply to: [GravityExport Lite for Gravity Forms] Field formatting and fields not savingThanks Doeke! The first and fourth worked nicely.
I am still having trouble with #2, separating the address. I have deactivated and tried redownloading the CSVs but the problem remains.
I could send you some system info if you think you could help. It doesn’t seem like major plugins like Yoast and Wordfence would play a role.
As for the currency issue, I get your meaning.
We are using AUD$, a . for the decimal and a comma , for the thousands mark.
We have two main forms, one is a simple amount with a field called “your-donation”
The other is more complex, it is a dropdown with multiple options called “buy-tickets”
The format for Buy Tickets is 3 tickets for $15 ($ 15.00) (we just need the final 15)
Forum: Plugins
In reply to: [GravityExport Lite for Gravity Forms] Field formatting and fields not savingThanks Doeke, you are too kind! (actually you are just the right amount kind )
I will check the FAQs, I am a little familiar with writing functions so hopefully will be fine with 1 and 3.
Will check 2 again and maybe try disabling some plugins to see if there is a clash.
4 looks solvable but would love some assistance with writing a “field-renderer”.