Daniele De Santis
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Add Custom CSS] Stopped to work after last updateGreat, you’re welcome!
Forum: Plugins
In reply to: [WP Add Custom CSS] Stopped to work after last updateI’ll investigate this further and solve it in the new release, to solve your problem now you can open the plugin’s main file wordpress-add-custom-css.php and, on line 172, replace site_url() with get_bloginfo(‘url’), so that your line 172 is:
wp_register_style( 'wp-add-custom-css', get_bloginfo('url') . '?display_custom_css=css' );Let me know if that helps
Forum: Plugins
In reply to: [WP Add Custom CSS] Stopped to work after last updateHi unster,
since the plugin have been tested and the update is only a minor update, I think there must be a different reason for this behaviour.What version of WP are you using?
Can you provide a link to the pages where style are not being applied so I can inspect your code?
Thanks,
DanieleForum: Plugins
In reply to: [WP Add Custom CSS] Cannot hide tags at end of postsHi Randy,
I’ve checked your website, are you referring to the tags at the end of each post, between “Related posts” and “Share This”?In this case I bet there’s an option somewhere in your theme settings page to hide them.
Hiding them with CSS is not a good choice, but in case you don’t have any alternatives, that should work:
.info-block:nth-child(2) { display: none; }It doesn’t have any specific css classes, so we must use the :nth-child() pseudo class
Forum: Plugins
In reply to: [WP Add Custom CSS] Cannot hide tags at end of postsHi Randy,
unfortunately your problem has nothing to do with the plugin, you just have to find the right CSS rule to override the one which is displaying the tags.Anyway, I’ll be happy to help you, just write the url of the page with the issue so I can check your code and find the right CSS rule for you.
Thanks,
DanieleForum: Plugins
In reply to: [WP Add Custom CSS] css rules not applied to add language with WPMLHi imoullet,
the issue has been fixed in version 0.9.6, please update your version of WP Add Custom CSS.Thanks for pointing out the issue!
Best,
DanieleHi,
first of all, thanks 🙂The plugin stores its CSS rules in the database, changing theme or deactivating the plugin won’t delete them (but if you delete the plugin, its CSS rules will be lost).
Anyway, always backup your database before you make any changes to the website, so you can easily restore everything if anything goes wrong.
Best,
DanieleForum: Plugins
In reply to: [WP Recent Posts From Category] Page navi for plugin !Hi ngocthai8977,
I’m sorry, the plugin doesn’t include pagination, it is not meant to replace page templates 🙂Best,
DanieleForum: Plugins
In reply to: [Woocommerce Add Countries] Add Delta, CanadaHi,
the plugin lets you add countries, not cities.You can add a city, but it will be listed in the countries’ list.
Is that what you want to achieve?
Forum: Plugins
In reply to: [WP Add Custom CSS] Post TypesHi,
it works with posts and pages, but the main stylesheet is applied to all posts type.If you want to apply custom css to single posts of a different post type you can edit a bit the plugin’s main file (it’s very easy to do) like I explained in this thread:
https://wordpress.org/support/topic/custom-post-types-211
Best,
DanieleForum: Plugins
In reply to: [WP Add Custom CSS] Custom Post TypesHi Andreas,
yes I’m plannig to include this feature in one of the future releases, probably not in the very next ones, but it will be done 🙂Best,
DanieleForum: Plugins
In reply to: [WP Add Custom CSS] doesn't work on blog pageHi,
you’re welcome 🙂Your blog page is the one generated by WordPress or is it a page which as a blog template applied? In the first case you should write your CSS rules in the main WP Add Custom CSS stylesheet.
In any case, can you provide a link to your blog page so I can have a look?
Thanks,
DanieleForum: Plugins
In reply to: [WP Add Custom CSS] Plugin doesn't handle "@import url"Hello,
the plugin handles the @import directive in both main css section and single pages section.I can use something like this without any problem:
@import url(https://fonts.googleapis.com/css?family=Permanent+Marker); body { font-family: 'Permanent Marker', cursive; }Could you provide a link so I can look at your code?
Thanks,
DanieleForum: Plugins
In reply to: [WP Add Custom CSS] Style doesn't apply to all languagesHi,
I’ve tested the plugin with qTranslate-X and it works fine, the main stylesheet is applied correctly in all languages.Probably it’s an issue related to tour installation, could you provide a link to your website (if you prefer you can send it via private message) so I can inspect your code?
Thanks,
DanieleForum: Plugins
In reply to: [WP Add Custom CSS] adicionar css personalizadoHello,
I’m not sure about your question (as it is not in English), but if you’re trying to add css rules to a specific page, go to that page and search for the custom css metabox. You can write your css there and then update the page.Be sure you are displaying custom field (“screen option” button on the top-right of your “edit” page)
Best,
Daniele