DraftPress Team
Forum Replies Created
-
Forum: Plugins
In reply to: [Header Footer Code Manager] A couple of improvementsThanks so much for the suggestions. They all make sense. Will discuss internally and add to the queue.
If you haven’t left a review, we’d really appreciate it! All the best.Forum: Reviews
In reply to: [Header Footer Code Manager] amayayThanks a lot for taking the time to review our plugin.
Forum: Reviews
In reply to: [Header Footer Code Manager] HFCMThank you for sharing your thoughts and experience with the HFCM plugin. We appreciate you taking the time to provide such a detailed and positive review.
Forum: Reviews
In reply to: [Header Footer Code Manager] Great PluginThanks a lot for reviewing our plugin. Much appreciated.
Forum: Reviews
In reply to: [Header Footer Code Manager] Simple & effective but with one catchThank you for leaving a review. While it pains us to get only 4-stars for something outside of our control let us explain why it is the way it is…
regarding the 1 star removed for the catch, it’s because we follow WP guidelines and are awaiting a hook for the opening body tag. There was talk by WP team about releasing such a hook but it has not yet been adopted. As soon as it is, we’ll use that to do exactly what you said.
Thank you.Forum: Reviews
In reply to: [Header Footer Code Manager] Cool pluginThank you for taking time out to leave this review. Apologies that we’re just now noticing it.
Forum: Reviews
In reply to: [Header Footer Code Manager] Simple! Pratico! Eficiente!5-stars!! Woohoo!! Thanks.
Forum: Reviews
In reply to: [Header Footer Code Manager] Very usefulWhoa!! You’re a veteran HFCM user 😛 Thanks for taking time to leave a review. We do read each one and appreciate it.
Forum: Reviews
In reply to: [Header Footer Code Manager] Clean, crisp and reliable productSorry for our delayed response here but just saying thanks for taking time to leave a review. We do read each one and appreciate it.
Forum: Reviews
In reply to: [Header Footer Code Manager] userfriendlyThanks for the wonderful review and giving us full stars. Love it – – more motivation.
Forum: Reviews
In reply to: [Header Footer Code Manager] GoodThank you for the wonderful review. We just noticed it!
Much appreciated.Forum: Plugins
In reply to: [Header Footer Code Manager] Export all Snippets@moonandowl, You can export all your snippets.
Please find instructions on how to export all snippets in our documentation here: https://draftpress.com/docs/header-footer-code-manager-pro/
Let me know if you have any other questions!
Forum: Plugins
In reply to: [Header Footer Code Manager] Snippets in one lineWe’re not sure what your code is trying to do or what it looks like so it’s difficult to provide guidance.
However, you could just combine them into 1 snippet if they’re meant to show in same spot. Which it sounds like that’s what you are trying to do. Then, multiple snippets isn’t necessary. Just use 1.
Other than that, we can’t say much without reviewing a lot more details like the snippet code, purpose, and end result you’re seeking.Forum: Plugins
In reply to: [Header Footer Code Manager] Snippets in one lineHi,
To achieve this, you’ll need to remove any line breaks or newline characters that separate the individual snippets in your code.
Here’s a simple example in HTML:
Original code with line breaks:
<div><p>This is a paragraph.</p></div><span>This is a span.</span>Code with snippets on the same line:
<div><p>This is a paragraph.</p></div> <span>This is a span.</span>Forum: Plugins
In reply to: [Header Footer Code Manager] CSS snippet not insertingInstead of using the CSS code editor directly, try wrapping your CSS rules within
<style>tags. This is a common practice for inserting CSS styles into HTML documents, and it may resolve the issue you’re experiencing with HFCM.Here’s how you can do it:
- Go to the snippet editor in HFCM.
- Instead of entering your CSS rules directly, add the following lines at the beginning and end of your CSS code:
<style> /* Your CSS rules go here */ </style>- This reply was modified 2 years, 2 months ago by DraftPress Team.