Zoinks! Graphics
Forum Replies Created
-
carshowfanatic.com
@crubenstein11 I am experiencing similar issues. Can you please post details about your solution? Thanks!
Forum: Plugins
In reply to: [Event Single Page Builder For The Event Calendar] Developer WebsitesTypo aside, same issue for both websites:
With Surfshark ON, this error…
403Forbidden
Access to this resource on the server is denied!Only with Surfshark OFF do the sites pull up normally. FYI.
Forum: Plugins
In reply to: [Event Single Page Builder For The Event Calendar] Developer WebsitesActually appears that my Surfshark VPN doesn’t play nice with your websites. While the VPN is enabled I get errors making it seem like the sites are down.
Forum: Plugins
In reply to: [WP News and Scrolling Widgets] Undefined array key “unique”Awesome, that did it! Thanks!!
Forum: Plugins
In reply to: [Toolbar Publish Button] Simple Custom CSS and JSAnyone…? Your plugin description says it works with custom posts, but there’s no option to specify if it’s missing any custom post types. Such as “post-type-custom-css-js”
Thanks! Looking forward to hearing back.
Including the code in header.php is a temporary solution. I’d much prefer to have all my customizations in functions.php
Interestingly, including the following code anywhere in the header.php file works. But I’d much rather have it in the functions.php if at all possible!
use FileBird\Classes\Helpers as Helpers; $ids = Helpers::getAttachmentIdsByFolderId(2); define('FILEBIRD_PIC', $ids[0]);
Thank you for the response!
As instructed, in functions.php I replaced…
<?php if(!defined('ABSPATH')) exit;
…with…
<?php namespace FileBird\Controller; use FileBird\Model\Folder as FolderModel; use FileBird\Classes\Helpers as Helpers; use FileBird\Classes\Tree; if(!defined('ABSPATH')) exit;
Instead of working, however, that made my site only show the header and footer. Any other ideas?
Forum: Plugins
In reply to: [Share to Google Classroom] WordPress 5.5.1 compatibilityLooks like the current version of the plugin doesn’t include the platform.js javascript link. Here’s how I included it in my theme…
<?php echo '<script src="https://apis.google.com/js/platform.js" async defer></script>'; echo do_shortcode('[share_to_google]'); ?>
See here for more info: Google Dev
“The tutorial is here”
Where? ??Forum: Plugins
In reply to: [Shipping Live Rates for FedEx for WooCommerce] Time in transit?Cool, thanks! Now how would I call the public function rate_shipment() outside of FedexShippingService.php like say in my theme’s functions.php? Just adding that function results in…
Fatal error: Uncaught Error: Call to undefined function rate_shipment()
Forum: Plugins
In reply to: [Shipping Live Rates for FedEx for WooCommerce] Time in transit?Thanks, but again, I didn’t explain clearly. Can you please tell me which file in your plugin the SOAP query fires off to create the code snippet I included above? Then I will add some functions on my end to get the time in transit info.
Again, I will be happy to send you whatever code I come up with if it helps with developing the next version of your plugin.
Forum: Plugins
In reply to: [Shipping Live Rates for FedEx for WooCommerce] Time in transit?Thanks for the response, Piotr! I wasn’t clear in my request… Can you point me to where/how in your code that *I* can hook in to obtain time in transit information? Specifically the “[TransitTime]” value as displayed below from the plugin’s debugging. I’ll be happy to share my customizations.
[PackagingType] => YOUR_PACKAGING [CommitDetails] => Array ( [0] => FedExVendor\FedEx\RateService\ComplexType\CommitDetail Object ( [name:protected] => CommitDetail [values:protected] => Array ( [ServiceType] => FEDEX_GROUND [ServiceDescription] => FedExVendor\FedEx\RateService\ComplexType\ServiceDescription Object ( [name:protected] => ServiceDescription [values:protected] => Array ( [ServiceType] => FEDEX_GROUND [Code] => 92 [Description] => FedEx Ground [AstraDescription] => FXG ) ) [DerivedOriginDetail] => FedExVendor\FedEx\RateService\ComplexType\CleansedAddressAndLocationDetail Object ( [name:protected] => CleansedAddressAndLocationDetail [values:protected] => Array ( [CountryCode] => US [StateOrProvinceCode] => PA [PostalCode] => 18708 [LocationNumber] => 185 ) ) [DerivedDestinationDetail] => FedExVendor\FedEx\RateService\ComplexType\CleansedAddressAndLocationDetail Object ( [name:protected] => CleansedAddressAndLocationDetail [values:protected] => Array ( [CountryCode] => US [StateOrProvinceCode] => PA [PostalCode] => 18708 [LocationNumber] => 185 [AirportId] => ABE ) ) [TransitTime] => ONE_DAY [BrokerToDestinationDays] => 0 ) ) )
- This reply was modified 5 years, 1 month ago by Zoinks! Graphics. Reason: cleaned up code sample