AK1977
Forum Replies Created
-
Forum: Plugins
In reply to: [Cyclone Slider] Slider jerks when transitioningHi Kosinix
Have you find the solution. I also have this problem. While loading the page (or refreesh), first slide jerks like it shows first slide then disappears for a very short time then 1st image load again and slider runs…. It seems that it is loading the first image and then loading the slider files.
This problem is also appears in the demo where boat image appears first then slider jerks/disappears. After short time it appears again and start sliding images smoothly.
Any suggestion?
Forum: Plugins
In reply to: [Membership 2] Only Allow Whole Site Access To AdminI want them to login by their wp acess but want to use the custom login page with message at top. It should not default wordpress admin or login page.
I dont want to show any content without login with wp access. If I allow the home page then visitor can see the contents on the home page like site header, menu or other stuff without login, isn’t it?
But that login page can be customizable with different header, login form and any other custom message.
Thanks for your quick reply.
Forum: Plugins
In reply to: [Advance WP Query Search Filter] Replace Image at Search buttonThanks for your quick help and hints. I managed to fix it by your help. Anohter question though:
How can I use different css styles for different forms, e.g. I want to show one form at top horizonal where drop boxes will be in horizontal style (different from default look of this plugin). But I want to use anohter search as a sidebar widget with default style of this plugin, like dropboxes in vertical.I will appreciate for any help.
Forum: Plugins
In reply to: [Advance WP Query Search Filter] Replace Image at Search button#awqsf_submit{} did not have any effect. I used p.awqsf-button{text-align:center;width:90%;} but image is shwowing at back and large Search with gray background still dominated
You can see it here https://www.villaszilic.com
Go to plugin file
inquery_form_to_posts_or_pages.php and remove spaces from the following code
BEFOREfunction inq_admin_actions() { add_options_page("Manage Post or Page Inquiry form", "Manage Post or Page Inquiry form", 1, "Manage Post or Page Inquiry form", "inq_admin"); }
AFTER
function inq_admin_actions() { add_options_page("Manage Post or Page Inquiry form", "Manage Post or Page Inquiry form", 1, "ManagePostorPageInquiryform", "inq_admin"); }
Check the last one ManagePostorPageInquiryform
Go to plugin file
inquery_form_to_posts_or_pages.php and remove spaces from the following code
BEFOREfunction inq_admin_actions() { add_options_page("Manage Post or Page Inquiry form", "Manage Post or Page Inquiry form", 1, "Manage Post or Page Inquiry form", "inq_admin"); }
AFTER
function inq_admin_actions() { add_options_page("Manage Post or Page Inquiry form", "Manage Post or Page Inquiry form", 1, "ManagePostorPageInquiryform", "inq_admin"); }
Check the last one ManagePostorPageInquiryform
The code provide above doe snot work.
@six: try this
plugins>floating-adsense-bar>fab_style.css@media only screen and (max-width: 479px){ #ad_divLeft { width: 10%; } #ad_divRight { width: 10%; } }
You can test different max-width for different screens and also div width.
If you wanna hide for specific mobile then use the following code
@media only screen and (max-width: 479px){ #ad_divLeft { z-index: -99999 } #ad_divRight { z-index: -99999 } }
inside plugin directory go to /views then open checkout-form.php . Add new fields here. Open /gateways and Cart66gatewayAbstract.php and add the fields names there to send it to database. Dont forget to create same names columns in the database . Table name in DB is wp_cart66_orders.
You have to read above files carefully and also read comments inside the files which help you to understand the code functionality.
Forum: Plugins
In reply to: [List category posts] [Plugin: List category posts] Pagination@mukeshphpmysql: I am using “List category posts with pagination” but pagination is not working for me. Any suggestion? What is the shortcode for showing required posts per page (e.g. 20 or 50 posts per page)?