Serkan Azmi
Forum Replies Created
-
Forum: Plugins
In reply to: [Zia3 CSS JS] Issue in Admin JS Breaks Admin Post Editor FunctionalityThanks NetTantra for spotting and pointing out this bug. Sorry for the late response. I have patched the plugin and will be releasing a new version soon.
Forum: Plugins
In reply to: [Zia3 CSS Fullscreen Background Slideshow] Looking good ;-)Thanks for using the plugin and your suggestions. I will have them implemented in the next update.
Cheers.
Forum: Plugins
In reply to: [Zia3 CSS JS] Feature Request!What you suggest defies the purpose of the plugin. You could easily include all JS and CSS just by including them in the template.
This plugin allows you to select specific JS and CSS for individual pages/posts to alter a specific page/post but not the whole site. It makes more sense not to include a file if it is not necessary instead of including it everywhere and not using it.
Forum: Plugins
In reply to: [Zia3 CSS JS] 2 user requests…Sorry for taking so long to reply, but I will try and implement your feature requests and suggestions in the next iteration of the plugin.
Forum: Plugins
In reply to: [Zia3 CSS JS] Javascript issuesThanks for the find, I updated the plugin to only load the required scripts when metaboxes are visible as suggested by J.D. Grimes. Please let me know if this fixed your problem Vidyut.
Cheers
Forum: Plugins
In reply to: [Zia3 CSS JS] Enabling on custom post typesI will add this feature in the next release.
Forum: Plugins
In reply to: [Zia3 CSS JS] Missing addon directoryPlease update to the latest version to fix this issue.
Forum: Plugins
In reply to: [Zia3 CSS JS] Javascript issuesHi Vidyut,
You may have other plugins using the same syntax highlighter that have been uninitialized properly.
Please send me a list of installed plugins to see if I can replicate the issue. So far there has been no issues with other plugins.
Cheers
Forum: Plugins
In reply to: [Zia3 CSS JS] I loved the plugin, but it broke "Shortcode Exec PHP" pluginThe Zia3 CSS JS plugin has been updated and is using the latest version of jquery ui library which seems to have solved the problem.
Please update to the latest version to check compatibility with your plugin.
Forum: Plugins
In reply to: [Zia3 CSS JS] I loved the plugin, but it broke "Shortcode Exec PHP" pluginI will have a look into it and try and get it resolved. I haven’t used it with Shortcode Exec PHP plugin. I will have to have a look at that plugin and hopefully it isn’t breaking any WP coding conventions and best practices etc,.
Forum: Plugins
In reply to: [Zia3 CSS JS] Zia3 Inline Custom CSSh1 {font-size:250%}
h2 {font-size:200%}
p {font-size:100%}You can paste the above in the inline Custom CSS and it will affect the tags you specify.
Alternatively you can inset the code below into the JavaScript box.
Attach an event handler to this image, to adjust the font size accordingly. Using jQuery, for example:$(“#largerTextImage”).click(function() {
$(“body”).css(“fontSize”, “120%”);
});