asadmalikdotpk
Forum Replies Created
-
Forum: Reviews
In reply to: [Easy Forms for Mailchimp] FlawlessYou are very welcome.
It is the least one could do for the efforts and love this team has put into this efficient, and flawless, easy to use and the best plugin for “integrating mailchimp multiform in wordpress with thank you pages redirect”. ??
Kudos!!!
Forum: Fixing WordPress
In reply to: Automatic Category AllocationYes there are few in plugins directory…search for term “auto category”. ??
Forum: Fixing WordPress
In reply to: Access wordpress websiteYup…Check for user email in user meta table and then change it to your email. or change user password in user table from your phpmyadmin control panel…and get in!!
Forum: Fixing WordPress
In reply to: menu link to open page in specific positionThis is neither a theme setting nor a wordpress setting. Its basic html. First give your target object (div, p, span, etc) an id. Then in url append that id with # sign. Like this https://www.example.com/about.html#mytargetdiv. Where mytargetdiv is the ID of your target element. Now when you click this element (div, a, span etc)…browser will scroll to the target block automatically.
Hope this helps.
Forum: Fixing WordPress
In reply to: How do I use PHP to display the alt text in for a featured imageYes you do need to fetch alt text first.
Check this question on stackoverflow: https://stackoverflow.com/questions/19267650/get-wordpress-featured-image-altHope this helps.
Forum: Fixing WordPress
In reply to: What to do when theme support is so slowIf you are going to travel the road of modifying theme, you’d definitely need a developer on team to help with various issues that will arise when you start editing theme related files. Better accept the theme as it is or think about hiring a developer…which you’d eventually need if you are planning to actually keep running your website smoothly.
Forum: Plugins
In reply to: [WP Mobile Menu - The Mobile-Friendly Responsive Menu] How to Unstick Menu?Hey treasurestatecattleco,
Try to identify css with rule position:fixed and change it to position:absolute. You’d still need to adjust css…but this should get you started.
Can you share direct link to your CSS file that is not showing? Like /wp-content/themes/…/style.css?
Also there are some mixed content errors in your console…might wanna take care of that.Forum: Developing with WordPress
In reply to: Add Image captions to Archive PageGlad to help.
Forum: Fixing WordPress
In reply to: Issue with removing different home versions under the Home nav BarGo to Admin>Appearance>Menu. Select appropriate menu from top dropdown. Change, remove items from there. You can change menu items order by dragging them and delete them using little dropdown icon to their upper right corner.
Forum: Developing with WordPress
In reply to: Add Image captions to Archive PagePlease check and share generated html code and styles applied to it. You can check generated html in browser’s developer console/tools.
My guess is you need to encapsulate your caption in a container like div or span, and apply/clear floats as seem desirable.
Forum: Developing with WordPress
In reply to: Making CSS stick for element.styleReplace “element.style” with actual class of the element/node. For example if I had following tag: <span id=”dep-section”>…</span> I’d define style as #dep-section {display:block;} etc. or if I had <span class=”dep-section”></span> I’d define its style as .dep-section{font-size:2em;} for example.
Hope this helps.Forum: Fixing WordPress
In reply to: wordpress user activation email link not working in safariCan you share the link?