cubecolour
Forum Replies Created
-
Forum: Plugins
In reply to: [Featured Image Zoom] Need featured image (thumb size) with zoom featureTry echoing the shortcode with the required shortcode parameters
for example
<?php echo do_shortcode("[zoom size=thumbnail zoomin=3]"); ?>Forum: Plugins
In reply to: [Tabby Responsive Tabs] Tabs on the page load with a delayEvery site is different without seeing your site it is probably not possible to determine a specific reason for a delay in the rendering of your tabs.
You might find that using a cache plugin such as Wp super cache and/or an optimization plugin such as autoptimize might improve how your pages load.
Forum: Fixing WordPress
In reply to: Totally forgot my wp-admin details, how to retrieve it back?Without setting up ftp access on your hosting account your options are limited.
The quickest way to a solution would probably be to contact siteground support for help.
Forum: Plugins
In reply to: [Featured Image Zoom] Image displays twiceWhen the plugin is deactivated, does the featured image still appear on the page?
If so you will need to discover how that instance of the image is being added and prevent it from appearing.
Forum: Plugins
In reply to: [Tabby Responsive Tabs] Paid for add-on but did not get itPlease accept my apologies for this. Some things on the site have been reconfigured and I think this is causing intermittent email delivery issues. I will contact you by direct email right away with details of how to download your plugin.
Forum: Fixing WordPress
In reply to: Wp Bug where customization fields are not visibleIt sounds like your server *might* be running out of memory. You could try to increase the amount of memory available to PHP.
To do this, edit wp-config.php file just before the line that says
That’s all, stop editing! Happy blogging.Add this line:
define( 'WP_MEMORY_LIMIT', '256M' );If this has no effect, try 512M
You host might be limiting the amount of memory available, so also contact their support to find out whether it can be increased.
Forum: Fixing WordPress
In reply to: Login/Logout as a menu itemThere are a few plugins which should enable you to implement this
eg: Login or Logout Menu Item By cartpauj: https://ww.wp.xz.cn/plugins/login-or-logout-menu-item/
Forum: Plugins
In reply to: [Tabby Responsive Tabs] Deactivate scrolling animationThis would require some custom code to achieve. It is not something I have looked at previously so I do not currently have any code to achieve this and it will only be something I would have time to look into if I needed it for one of my own projects or if it was commissioned by a customer.
Forum: Plugins
In reply to: [Audio Album] Please use the new “on(load)” functionThe plugin has been updated
Forum: Reviews
In reply to: [Tabby Responsive Tabs] Just excellentThank you for the review, donation, and feature suggestion.
Being able to target each tab and tab content area with a class is a great idea, so there will probably be a new ‘class’ shortcode parameter in the next version of the plugin.
Forum: Plugins
In reply to: [Tabby Responsive Tabs] No funciona el plugin de un momento a otroI am not able to see your images so I am not sure of the exact nature of the issue.
From the appearance of the tabs on the page I can see that the tab sare working as expected, however it looks like there is an issue with the styles applied to the tabs.
I would normally troubleshoot issues such as this by inspecting the CSS applied to the tabs using browser tools, however this is not possible on your site as the CSS is being changed by a cache/minify plugin.
If the issue arose after a recent update and you have previously used a line of the code to remove the default tabby CSS, and the site is using a set of customised styles, go to settings -> tabby and uncheck the “Include the default tabby stylesheet” checkbox to be sure that the original tabby.css stylesheet it not loading.
After making any changes be sure to flush the cache.
- This reply was modified 4 years, 3 months ago by cubecolour.
Forum: Plugins
In reply to: [Indicate External Links] Exclude Some URLsTry using CSS rules as below:
a[href^="https://daily.mysite.com"].extlink sup:after, a[href^="https://another.mysite.com"].extlink sup:after, a[href^="https://andanother.mysite.com"].extlink sup:after { content: ''; }Forum: Plugins
In reply to: [Tabby Responsive Tabs] v.1.34 does not honor target in the querystringThank you for the heads-up, This bug should now be fixed in version 1.3.5
Forum: Plugins
In reply to: [Tabby Responsive Tabs] HTML tags stripped from title outputv1.3.4 is now live with this change
Forum: Plugins
In reply to: [Tabby Responsive Tabs] HTML tags stripped from title outputThe tab title is being sanitized with
sanitize_text_field()in version 1.3.3 of the plugin.I will change this to
wp_kses()to allow line breaks and some other html to be used in the tab titles as I am sure there are several use-cases where this might be useful.This change will be in the next update, version 1.3.4