Ramesh (thecodeisclear)
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Complete Archive – pages, posts, mediaI think you are mistaking the WordPress archive page to archive (from the compression world). If you are looking for a backup of your wife’s site, you can use a plugin like BackupWP. This will give you a database dump (with the posts, categories, pages etc.) plus a backup of the wordpress folders (you can look into /wp-content/ to see your themes, uploaded images etc.
Hope this helps.
Forum: Plugins
In reply to: [WP Shortcodes Plugin — Shortcodes Ultimate] Font Awesome in text?You can use the Service Shortcode without any service description. The icon appears ahead of the text. Here is an example
[su_service title="Email: admin@mysite.com" icon="icon: envelope-o" size="16"][/su_service]Forum: Fixing WordPress
In reply to: CSS text issueI am afraid it is not possible to modify it without actually changing the code of the plugin (Visual Form Builder). I suggest you post this at the plugin support thread – https://wordpress.org/support/plugin/visual-form-builder
Forum: Fixing WordPress
In reply to: CSS text issueDoes the form below VERTIFICATIE also show up? Maybe the verification is not needed for logged in users, so it is hidden (by changing the font color to white)
Forum: Fixing WordPress
In reply to: How to Create a Social Sharing PluginHi,
I assume you are familiar with PHP & HTML since you want to build a plugin on your own.
Here are some resources that you can use:
http://www.carriedils.com/social-sharing-without-plugins-wp/
http://www.smashingmagazine.com/2012/11/15/embeddable-content-wordpress/Alternately, you can customize any existing plugin from the repository as long as you retain the original license and credit the original author(s).
Forum: Fixing WordPress
In reply to: I can't login to my adminDo you have any rules in your .htaccess file that does the redirects? Or are there any recent security plugins that you have installed that is preventing access to the admin pages?
This works with spoiler titles (but for some reason fails with Tab titles)
[su_spoiler title="Smith et al [ 2, 3 ]"]Here is what I have to say about Smith and his gang[/su_spoiler]PS: I have omitted the ; after 91 & 93 since wordpress was auto-converting the unicode to actual values.
Forum: Fixing WordPress
In reply to: Stop constant WordPress.org password reset emails??You could mark the email as Spam so that your mailing system will automatically move the mail to the spam folder. In the event that you actually forget your password and need to reset you, you can go to the spam folder and find the mail you are looking for.
Most providers auto clean-up spam folders so that’s one worry less for you.
Forum: Plugins
In reply to: [WP Shortcodes Plugin — Shortcodes Ultimate] How to change padding to 0pxInline styles will always override any custom css. So, I am afraid the padding cannot be changed without changing the code. If you would like to venture there, let me know and I can show you where the code needs to be changed.
Ok. Here is how you can do it using custom CSS. From the Admin Dashboard click on ShortCodes
Settingsand then the tab for Custom CSS. Paste the following code.myown .su-carousel-prev, .myown .su-carousel-next { position: absolute; top: 50%; display: block; width: 40px; height: 40px; margin-top: -20px; background: rgb(0, 0, 0) 0 0 url('%plugin_url%/assets/images/swiper/default.png') no-repeat; background-color: rgba(0, 0, 0, 0.5); cursor: pointer; border-radius: 50%; -moz-border-radius: 50%; -webkit-border-radius: 50%; filter: alpha(opacity=0); opacity: 0.7; transition: all .2s; -o-transition: all .2s; -ie-transition: all .2s; -moz-transition: all .2s; -webkit-transition: all .2s; } .myown .su-carousel-prev { right: 20px; margin-right: 0px; background-position: -40px 0; } .myown .su-carousel-next { left: 20px; margin-left: 0px; background-position: 0 0; } .myown:hover .su-carousel-prev, .myown:hover .su-carousel-next { margin-left: 0; margin-right: 0; filter: alpha(opacity=70); opacity: 0.7; } .myown .su-carousel-prev:hover, .myown .su-carousel-next:hover { filter: alpha(opacity=100); opacity: 1; }where you can replace myown with the class name of your choice. While creating the carousel, add your class name (myown in this example) in the popup (it is the last field). This should work.
What I have changed Here are the changes, (1) Set initial opacity for the nav items to .7 (from 0)
(2) reduced the margin for the arrows so that the default position is not too intrusiveForum: Plugins
In reply to: [WP Shortcodes Plugin — Shortcodes Ultimate] fatal error messagePlease post a link to the page to enable us to see the error.
Sometimes plugins can have a conflict with each other. What you can do is
1) De-activate all plugins
2) Activate shortcodes Ultimate
3) Check if error exists, (most likely no, but if yes, we need to check more on this plugin)
4) Activate your plugins one by one and after each activation check for the error message.
5) Post the plugin name after which you got the error. (I am not saying that the other plugin is at fault, but there could be conflicts which either plugin author have to fix)Forum: Plugins
In reply to: [WP Shortcodes Plugin — Shortcodes Ultimate] Font Awesome issue@mpiet.opis: You could alternatively upload a fresh version of Font Awesome manually to your website’s theme folder. It is a quick thing to overwrite the .css, .js & font files. Download the latest version here – https://github.com/FortAwesome/Font-Awesome
Forum: Fixing WordPress
In reply to: Dropdown menu on a post where a page break is implementedI think you are referring to this http://getbootstrap.com/components/#btn-dropdowns
Your website currently has no content, so I am not able to see how your data is currently and how it can be modified. Can you create a test page for me to see how page navigation is currently rendered?
Forum: Everything else WordPress
In reply to: Releasing a forked WP plugin separatelyMarking this as resolved. I have added new features to my fork, however, I will work on it a bit more and release it after getting plugin feedback.
Forum: Fixing WordPress
In reply to: Sidebar is Under the ContentThe post content has a class
span9which has a width of 870 px (though the actual css declaration shows 700px). The sidebar is pushed to a location below the content and hence your problem. I don’t know what is your target screen resolution, but at 1366×768,span7works fine and I can see the sidebar at the side 🙂<div class="span7 article-container jpibfi_container" id="content">PS: We all run up against the wall sometimes and asking for help is perfectly fine.