3C's
Forum Replies Created
-
Forum: Plugins
In reply to: [List category posts] Hiding/Removing “Continue reading →” LinkThat works perfectly, thank you! I’ve added that shortcode to our homepage.
Forum: Plugins
In reply to: [List category posts] Hiding/Removing “Continue reading →” LinkDone:
https://bellinghamcityclub.org/contentyes/ using
[catlist name=programs content=yes post_status=”future” numberposts=6?link_titles=false title_tag=h1 template=div order=asc ]and
https://bellinghamcityclub.org/contentfull/ using
[catlist name=programs content=full post_status=”future” numberposts=6?link_titles=false title_tag=h1 template=div order=asc ]Also worth mentioning: I believe the “Continue reading →” link is leading to a 404 page due to the posts being future dated posts – part of the reason I need to hide it. Thanks.
- This reply was modified 6 years, 5 months ago by 3C's.
Forum: Plugins
In reply to: [List category posts] Hiding/Removing “Continue reading →” LinkUpdate – reading another post in this forum, I adjusted the shortcode to use content=”full” instead of content=”yes”. However this new shortcode displays the post twice, followed by a “Read the rest” link.
Shortcode: [catlist name=programs content=yes post_status=”future” numberposts=6?link_titles=false title_tag=h1 template=div order=asc ]
Forum: Plugins
In reply to: [10Web Social Post Feed] Video lightbox showing blank screenHello, any updates on this fix? Thanks.
Forum: Plugins
In reply to: [10Web Social Post Feed] VIdeo Lightbox not workingGreetings,
We are experiencing the same issue. Video thumbnails display in the feed, but once clicked, the lightbox opens with a black screen. Could you please advise?Site is: https://sacredsea.org/events/
Thanks.
Gasusant,
In our case, we edited the file:
…wp-content/plugins/authorizenet-woocommerce-addon/authorize.net-woocommerce-addon.phpJust find the code listed above, and comment it out (see below)
/*
foreach ( WC()->cart->get_cart() as $cart_item ) {
$item_name = substr( strip_tags($cart_item[‘data’]->get_title() ) ,0,30) ;
$item_quantity = $cart_item[‘quantity’];
$item_price = $cart_item[‘data’]->get_price();
$item_taxable = $cart_item[‘data’]->is_taxable() == true ? ‘Y’:’N’;if($item_quantity > 0 && $item_price > 0 ){
$sale->addLineItem($i, $item_name, $item_name, $item_quantity, $item_price, $item_taxable); }
$i++; }
*/Greetings,
Has an update been made to the plugin regarding this issue? I just had a customer unable to process their order and receive the following message:The number of line items submitted is not allowed. A maximum of 30 line items can be submitted.—AuthorizeNet Error:
Response Code: 3
Response Subcode: 1
Response Reason Code: 271
Response Reason Text: The number of line items submitted is not allowed. A maximum of 30 line items can be submitted.
on 16-Mar-2018 05:54:48 UTC using AUTH_CAPTUREThanks.
Did the trick, thanks!
Exact path would be: wp-content/themes/Divi-child/plugins/events-manager/templates/forms/event-editor.php
Forum: Plugins
In reply to: [Firelight Lightbox] linking to lightbox image galleryThanks Ravan.
WP version 4.7.1
EM version 5.6.6.1I temporarily disabled all plugins and used the default WP theme, and the issue persisted. The error message Im getting in the console is:
events-manager.js:40 Uncaught TypeError: wrap.find(…).timePicker is not a function
at em_setup_timepicker (events-manager.js:40)
at HTMLDocument.<anonymous> (events-manager.js:1)
at i (jquery.js:1)
at Object.fireWith [as resolveWith] (jquery.js:1)
at Function.ready (jquery.js:1)
at HTMLDocument.K (jquery.js:1)Any suggestions?
Thanks.
Forum: Plugins
In reply to: [Import Eventbrite Events] Ticket options not showing nonsecure iframe infoUpdate: I fixed the issue by manually updating code in the plugin file –
import-eventbrite-events-pro/includes/class-xt-eventbrite-import-display.phpJust changed the iframe src to https –
<iframe id=”eventbrite-tickets-<?php echo $eventbrite_id; ?>” src=”https://www.eventbrite.com/tickets-external?eid=<?php echo $eventbrite_id; ?>” style=”width:100%;height:300px; border: 0px;”></iframe>However this will likely get overwritten at the next plugin update. Could you please add this to future updates?
Thanks.
Working fine on my site.
Forum: Plugins
In reply to: [WooCommerce] Single Product Price SizeNailed it, thank you!!!