Ramesh (thecodeisclear)
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Shortcodes Plugin — Shortcodes Ultimate] spoiler title@pankaj_vnt: I will look into the code and respond by Tuesday
@daniel75321: I think you can customize the css and get equivalent of H2 and H3/H4 in the spoiler. Can you send me a link to your site so that I can help with the custom CSS?
PS: It is general practice to open a new thread for issues
Hi,
I haven’t been able to nail the hover, but to change the color, you also need the
icon_color="#ffffff"property. The custom CSS needs to address theaelement like this.book-barry2 a { font-size: 44px; color: #ffffff; }<a href="/bookings">[su_note note_color="#c1122f" text_color="#ffffff"][su_service icon="icon: edit" size="63" title="Book Barry" class="book-barry2" icon_color="#ffffff"][/su_service][/su_note]</a>Forum: Fixing WordPress
In reply to: Dot appearing in slider image – appears to be a linkI think that should be okay. I looked up the code for the FlexSlider (https://github.com/woothemes/FlexSlider/blob/master/jquery.flexslider.js) and it does look like the code checks for the number of items (function –
setupPaging). Having just 1 item seems to remove the navigation control.Forum: Fixing WordPress
In reply to: [CSS] Page Title Redundancy- IssueAs you mentioned, Products link takes you to a page while the others seem to be posts. Hence the title has a different class. I will extend what Barnez wrote
.page-title, .entry-title { display: none; }Edit: @Barnez beat me to it 🙂 You could still combine the CSS if you wish or have two separate entries.
Forum: Fixing WordPress
In reply to: Dot appearing in slider image – appears to be a linkIf you are using just a single image, do you really need a slider? The dot is just nivo slider’s navigation button (similar to the slider you see in the top slider).
If you absolutely must use the slider, I would suggest that you hide the div
nivo-controlNavwith custom CSS asdisplay:none;PS: This will not affect the slider on top, since the sliders are different. However, any other page that uses Nivo Slider will be affected by the CSS change I have suggested.
Do you want the icon between the text or like a header? If you want it like a header on top?
I found that you can trick SU to use the service shortcode to output just the icon and nothing else.
[su_note][su_service icon="icon: edit" size="33" title="Note"][/su_service]How do I use font awesome icons (namely, 'icon-edit') inside a note using SU? I can do this easily for a button, yes, but I want to use it inside something else, especially a note but also a box if possible. [/su_note]This will place the icon at the top of the note with a title “Note”
If you want the icon to float right/left to the text, you can use this
[su_note][su_service icon="icon: edit" size="33" title="" class="fltleft"][/su_service]How do I use font awesome icons (namely, 'icon-edit') inside a note using SU? I can do this easily for a button, yes, but I want to use it inside something else, especially a note but also a box if possible. How exactly do I do this? Font awesome gives out the html but within wordpress and shortcodes ultimate, I can't seem to make <code><i class="icon-edit icon-2x pull-left icon-border"></i></code> work. Also, just want to shout out how much I LOVE using shortcodes Ultimate. Much easier and better than using Woothemes shortcodes. Thanks much for your help! [/su_note]and add the custom css (Plugin Settings page > Custom CSS)
.fltleft { float:left; }Here is how the output from the second part works (with custom css)
http://thecodeisclear.in/wp-content/uploads/2015/02/note-icon.jpg
Forum: Plugins
In reply to: [WP Shortcodes Plugin — Shortcodes Ultimate] spoiler titleThe entire title comes in one
div, so it is not directly possible to edit part of the text and change its color.Would you be open to customizing this plugin to suit your needs? The plugin is really flexible and adding new fields can be done in under 30 mins.
PS: The site looks really good. Kudos!
Forum: Fixing WordPress
In reply to: Buttons/Links?Welcome to WordPress.
Are you trying to create button links in a menu (or) are you trying to create button links within a page/post that links to other content on your site?
For the first, you will need to add links under
Appearance>Menusand select the pages you want to add to the menu.If you are trying to create buttons that link from post content to other areas of the website, I would recommend a Shortcode Plugin such as https://wordpress.org/plugins/shortcodes-ultimate/ which will let you create clickable buttons.
If I am totally off the mark, please let me know with additional information & screenshots.
Forum: Fixing WordPress
In reply to: taking site offlineYou can use a Maintenance Plugin such as this https://wordpress.org/plugins/maintenance/ for setting you site to maintenance mode. The site will still be live, but no one will be able to access any content.
Forum: Fixing WordPress
In reply to: Featured Image in Pure & Simple ThemeI have responded to your question on the theme support page. It is a feature in the Customize section.
Forum: Themes and Templates
In reply to: [Pure & Simple] Featured Image in PostI downloaded the theme and found the location of this setting. Under themes, click on
Customize. The live preview of the site will open up. In the menu to the left, expand “Basic Settings” and check theHide Featured Image on Full Postbox. You should no longer see the featured image in the post page.Forum: Plugins
In reply to: [Timeline For Categories] "Older posts" vs "Newer posts"Thank you for the feedback. I think it is a great idea. I will work on it and give this plugin a much needed upgrade 🙂
Forum: Fixing WordPress
In reply to: Featured Image in Pure & Simple ThemeYou would probably get a better solution from the theme’s support forum. However, a quick fix for you is to update style.css. Search for .featured-image-single and add the
max-widthproperty like this.featured-image-single { float: left; margin: 1.5rem 2rem 1.5rem 0; max-width: 100%; }One thing I can see if that you are using the same featured image as the first image in your post. Do you really want two same images one after the other?
I haven’t looked in depth, but from the code it appears that there is a feature to hide the featured image when viewing the post alone. You can enable that and prevent duplicate images from appearing.
Forum: Fixing WordPress
In reply to: Table wordpress formatting table widthI think you will need to add the
table-layoutproperty to the table like this.tablepress { border: medium none; border-collapse: collapse; border-spacing: 0; margin-bottom: 1em; table-layout: fixed; width: 100%; }(other settings are already in tablepress-combined.min.css)
Forum: Fixing WordPress
In reply to: Edit the "More" ThatHow the
moretag is displayed, is controlled by the theme and where your post content is displayed. What is the theme that you use?