benbunch
Forum Replies Created
-
Forum: Plugins
In reply to: [Really Simple CSV Importer] Import Order Does Not Match CSV OrderHere’s a workaround I’ve been using.
If you prepend your “post_title” content with some kind of ordinal text – for example “My Post Title” becomes “Post #1 My Post Title” – and correlate this with the order in your csv rows, if gives you some control.
Forum: Plugins
In reply to: [Really Simple CSV Importer] Import Order Does Not Match CSV OrderYeah, also curious about this. The order is correct in success page and archives page but in the posts dashboard it’s diffrent. Not sure the how/why of it’s ordering them.
Forum: Plugins
In reply to: [WooCommerce] Download link in confirmation email is not visible (white)Hey fells, just go into your woocommerce files (either in the plugin or your theme directly)
woocommerce/emails/email-styles.php
or
/yourtheme/woocommerce/emails/email-styles.php
and edit this line (around line 135)
a {
color: <?php echo esc_attr( $base ); ?>;
font-weight: normal;
text-decoration: underline;
}to this:
a {
color:red; /* or whatever color you want, hex value, etc */
font-weight: normal;
text-decoration: underline;
}Thanks for this, but is there any way to get it to use the specific image size (thumbnail, medium, large, etc..) instead of just the image url.
And the caption info if possible…
Forum: Plugins
In reply to: [Contact Form 7] Convert PDF FileHey, I stumbled across this thread in the hopes of integrating FPDF on a custom wordpress site.
Basically I have a Custom Post Type and I want to give the user an option to click a button and a PDF would be created using the content from the CPT (ie. post thumbnail, title, custom tax terms, custom fields, etc…)
I have been able to download FPDF and statically mess around with the classes, but I’m not sure how to implement this within the template for a CPT.
I am encountering similar type of error except it is looking just in the uploads folder.
If I purchase the personal license can I by pass this issue?
Forum: Plugins
In reply to: [Custom Field Template] File Upload over size limitI was having this same issue, then it just stopped letting me upload new images files altogether. Did you ever find a solution?
Forum: Hacks
In reply to: Native gallery shortcode output- title attributeThanks man, this was the key to my riddle.
Not a lot of documentation on this strategy of implementing Lightbox with the attachment link attribute filter. I prefer to use as few plugins as possible, so this is the way to go.
Much appreciated!