AndyWalmsley
Forum Replies Created
-
Forum: Plugins
In reply to: [Spots] Icons dont appearOK, so it does seem to be a problem with Spots, I will take a look as soon as I can and will hopefully have a solution some point tomorrow.
I’ll let you know of any updates as soon as possible, thanks for the help.
Forum: Plugins
In reply to: [Spots] Icons dont appearMost likely, not sure whether it’s a problem with the animations, icon font, or Spots not rendering it correctly.
Is that icon font or those animations being used outside of a Spot anywhere? Could you create a test to see if they work outside of a Spot both logged in and out?
Forum: Plugins
In reply to: [Spots] Icons dont appearThe icons have a css animation attached to them called bounceIn, there are some other animations coming from a plugin called revslider.
Forum: Plugins
In reply to: [Spots] Icons dont appearAre you using a plugin for the animations?
Do the animations work at all times when not used in a Spot?
Forum: Plugins
In reply to: [Spots] Icons dont appearAnd are you using this plugin for the animations?
https://www.themepunch.com/portfolio/slider-revolution-wordpress-plugin/
Do those animations work when not in a Spot at all times?
Forum: Plugins
In reply to: [Spots] Icons dont appearSorry, not had much chance to look at it, but have some time today.
Just to clarify, are you using Spots for the Social section, so a different spot for Facebook, Twitter, and Pinterest links?
Forum: Plugins
In reply to: [Spots] Icons dont appearHi DionysusArt,
How exactly are you using Spots, are you using the widget or shortcode?
Is it just icons/text in the Spot as well?
I’ll start looking into why this may be happening while waiting for your reply.
Forum: Plugins
In reply to: [Spots] Please "require" WP 4.3 if you're going to use a 4.3 only functionHi Nick,
Thanks for letting us know about this, I will release version 1.3.5 shortly with the version compare fix, so it will go back to working as it did before 1.3.4.
Sorry for the inconvenience caused by this.
Forum: Plugins
In reply to: [ICIT Weather Widget] Night vs. dayHi,
The time it should change depends on what OpenWeatherMap returns for sunrise and sunset times for the area your are searching for and compares that with the time your WordPress install is set to.
So if after checking the time for your WordPress install and it still seems wrong, I’ll take a look and see if there is a problem with the plugin/OpenWeatherMap.
Forum: Plugins
In reply to: [ICIT Weather Widget] Space between temperature and iconThis one is again best done with css so that it doesn’t revert in plugin updates, so if you add this to your style.css:
.weather-wrapper .weather-location br { display: none !important; }
Forum: Plugins
In reply to: [ICIT Weather Widget] Space between temperature and iconOkay, if you have access to edit your themes style.css file, you can just add this to it:
.weather-wrapper .no-break .weather-temperature { padding: 0 !important; }
Let me know if this doesn’t work, or if you need anything else.
Forum: Plugins
In reply to: [ICIT Weather Widget] Space between temperature and iconHi,
There is no built in customisation for this, but you can put any of your own css in your themes style.css using the class names of the plugin.
If you would like any help with this let me know and I will post some sample css to add to your theme.
Forum: Plugins
In reply to: [Spots] Can't assign AddQuickTags to SpotsHi AndyiBM,
I’ve just had a look at the AddQuickTags other notes page where it mentions adding support for custom post types. You can add the following code to your themes functions.php file and Spots will be added to the AddQuickTags settings page:
// add custom function to filter hook 'addquicktag_post_types' add_filter( 'addquicktag_post_types', 'my_addquicktag_post_types' ); /** * Return array $post_types with custom post types * * @param $post_type Array * @return $post_type Array */ function my_addquicktag_post_types( $post_types ) { $post_types[] = 'spot'; return $post_types; }
I would also suggest change the function names to make it a bit more descriptive, but it should work without changing it.
Let me know if that doesn’t work and I’ll see if there is anything else I can do.
Forum: Plugins
In reply to: [My Eyes Are Up Here] Possible to use with arbitrary image sizes?Hi,
Sorry about the lack of response prior to this.
I will take a look at this soon to see if I can change anything regarding this.
Forum: Plugins
In reply to: [My Eyes Are Up Here] Do not show previews for non images file formatsHi, I will try and take a look at this at some point this week and see if there is anything that can be changed to stop this from happening.