wpreader
Forum Replies Created
-
Forum: Plugins
In reply to: [Bulk Add Tags] Bulk Add Tags -Tag DescriptionHi doriggidy,
Would you have the same description in all the tags?
I hadnt thought about this myself but i guess it could be useful if you wanted to have a default description.
I’ll take a look at that for the next version
thanks joe – this will will do what i need
Forum: Plugins
In reply to: [Bulk Add Tags] [Plugin: Bulk Add Tags] plugin just opens an iframe to site@polle001: i have updated the plugin and tested it on my end. Can you give it a try and let me know if it now works for you?
Forum: Plugins
In reply to: [Bulk Add Tags] [Plugin: Bulk Add Tags] plugin just opens an iframe to sitei think this is going to be a simple fix as it’s just a simple directory reference problem i believe.
I’ll update the plugin in the next few days and re-upload it
Forum: Plugins
In reply to: [Social] Using wp_insert_post and triggering Socialthanks alex.
Forum: Plugins
In reply to: [Plugin: W3 Total Cache] Manual CSS/JS PlacementI’m still in search of something like this :
https://www.wpoptimus.com/131/html-tags-minified-js-css-wp-minify/
But i did find in the FAQs the following:
You’ll need to manually update your theme to include your CSS and JS minify groups. The calls you’ll want to make for the various cases are:
<?php if (function_exists(‘w3tc_styles’)): w3tc_styles(‘include’); endif; ?>
Inserts the <head> CSS group at the location you choose. Multiple occurrences are allowed.
<?php if (function_exists(‘w3tc_scripts’)): w3tc_scripts(‘include’); endif; ?>
Inserts the <head> blocking JS group at the location you choose.
<?php if (function_exists(‘w3tc_scripts’)): w3tc_scripts(‘include-nb’); endif; ?>
Inserts the <head> non-blocking JS groups at the location you choose.
<?php if (function_exists(‘w3tc_scripts’)): w3tc_scripts(‘include-body’); endif; ?>
Inserts the <body> blocking JS group at the location you choose.
<?php if (function_exists(‘w3tc_scripts’)): w3tc_scripts(‘include-body-nb’); endif; ?>
Inserts the <body> non-blocking JS groups at the location you choose.
<?php if (function_exists(‘w3tc_scripts’)): w3tc_scripts(‘include-footer’); endif; ?>
Inserts the footer JS group at the location you choose.
<?php if (function_exists(‘w3tc_scripts’)): w3tc_scripts(‘include-footer-nb’); endif; ?>
Inserts the footer non-blocking JS group at the location you choose.However, i could not get it to work – . maybe because i’m always calling wp_head(). I should try it without calling wp_head().
I’m hesitant to use your method as the changes would be over written when i update W3TC.
Nice site by the way ??
Forum: Plugins
In reply to: [Plugin: W3 Total Cache] Manual CSS/JS PlacementI’m in a similar situation and i’m looking for a solution as described above.
easy answer for anyone else that needs it. Just put the title in speech marks e.g. “test one”
Forum: Plugins
In reply to: Bulk add tags to postshave you tried the ‘bulk edit’ or even ‘quick edit’ post natively in wordpress?
Forum: Plugins
In reply to: [WP-Table Reloaded] Import Export problemHi tobias, so i think i found a glitch.
It seems that in the csv file that i was using had empty cells and in some cases this was the first cell in the row and that’s what made it not render properly – empty cells.
The way i fixed it was by adding 1 row and 1 column at the beginning of the table and i made sure that all the cells had values, in my case, i just put an ‘x’ in all the cells in the first row and column. I then tried to import it and it worked as expected.
e.g. if my table was this before
A,B,C,D
1,2,3,4
,6,,8
,10,11,12i changed to this so that it would import properly:
X,X,X,X,X
X,A,B,C,D
X,1,2,3,4
X,,6,,8
X,,10,11,12Forum: Requests and Feedback
In reply to: Auto Add Child Pages to Parent Pages on Nav Menuseven if this isn’t included in wordpress core. is there a way to automatically add child pages to parents on the wp nav?
i.e.
if i add a parent page, then i want the children to also be displayed.
the result would be the same as if i added them manually.is there a simple way to add something to functions.php to make this happen?
Forum: Plugins
In reply to: [WP-Table Reloaded] Import Export problemHi Tobias,
This still isn’t working for me. Do you have a working file that you are able to import successfully?
Anton
Forum: Plugins
In reply to: [WP-Table Reloaded] Import Export problemHi Tobias,
this is the simplest form of a csv file as i described above.
All the fields just end up going into a single cell.
What are your thoughts? do you have a working csv file?
PS i realise i can check if the user is logged in or not and then show them a menu based on that but it would mean creating 2 separate menus that would be very similar.
Forum: Plugins
In reply to: [WP-Table Reloaded] Import Export problemThanks Sam, but that doesnt help too much as this is related to the WP-Table Reloaded plugin.
Has anyone come across the problem im having?