fortyfivecreative
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Atomic Blocks] Atomic Blocks hero layout on Blog PageThanks John, that would be great.
Forum: Themes and Templates
In reply to: [Atomic Blocks] Genesis Framework CompatibilityGreat, thanks John…
Forum: Plugins
In reply to: [Open Currency Converter] Conversion of ACF Custom FieldThanks David, any help is much appreciated.
Forum: Plugins
In reply to: [Open Currency Converter] Conversion of ACF Custom FieldSorry no, it comes back with a zero (but without the decimal points)…
Forum: Plugins
In reply to: [Open Currency Converter] Conversion of ACF Custom FieldSorry, do you mean the ACF field is a number field rather than free text?
Forum: Plugins
In reply to: [Open Currency Converter] Conversion of ACF Custom FieldNo difference I’m afraid…
Forum: Plugins
In reply to: [Open Currency Converter] Conversion of ACF Custom Fieldecho do_shortcode( ‘[convert number=’. $cost .’ from=”gbp” to=”usd”]’ );
Returns ‘0.00’
I tried outputting $cost and that displays the correct ACF value without conversion.Forum: Plugins
In reply to: [Open Currency Converter] Conversion of ACF Custom FieldHi David, I’m using:
$cost = get_field( ‘mp_pricing_cost);
echo do_shortcode( ‘[convert number=’ . $cost . ‘ from=”gbp” to=”usd”]’ );Thanks
Forum: Plugins
In reply to: [Genesis Simple FAQ] Toggle Not Working Outside LoopQuick follow up to this. It seems that jquery.genesis-simple-faq.min.js is not being called unless [gs_faq] is placed in the main editor window. I could call the JS manually but this seems to be a bit messy. Can anyone please help with a fix? Thanks
Forum: Plugins
In reply to: [Genesis Connect for WooCommerce] WooCommerce Bookings + Accommodation Add OnGreat, thanks Andrea…
Forum: Plugins
In reply to: [LiteSpeed Cache] Really Simple Captcha Code IssueThanks, I didn’t add the full contact page URL, only a partial URL relating to the captcha image. So it sounds like I should be moving to recaptcha.
Forum: Plugins
In reply to: [Genesis Columns Advanced] CSS GridThanks Nick ??
Forum: Plugins
In reply to: [Genesis Simple Sidebars] Cannot remove primary sidebar on single CPTFollow-up…
Calling this within “add_action( ‘get_header’ ) seems to work. Can anyone improve on this?
Thanks
Forum: Plugins
In reply to: [Portfolio Post Type] Change Name of PortfolioHi Devin,
Sorry, still not sure how to create a filter that covers portfolio_category and portfolio_tag. Is this even close to what I should be doing? : )
add_filter( ‘portfolioposttype_tag_args’, ‘ff_change_portfolio_tag_labels’ );
function ff_change_portfolio_tag_labels( array $args ) {
$args[‘labels’] = $labels;
$args[‘rewrite’] = array( ‘slug’ => ‘portfolio-tag’ );
return $args;
}add_filter( ‘portfolioposttype_args’, ‘ff_change_portfolio_labels’ );
function ff_change_portfolio_labels( array $args ) {
$args[‘labels’] = $labels;
$args[‘rewrite’] = array( ‘slug’ => ‘portfolio-category’ );
return $args;
}Thanks
Forum: Plugins
In reply to: [Portfolio Post Type] Change Name of PortfolioHi Devin,
I’m trying to change the following slugs in my archives:
/portfolio_category/ > /projects-category/
/portfolio_tag/ > /projects-tag/Could you please help with a filter for this?
Thanks in advance
David