mccormicky
Forum Replies Created
-
Forum: Plugins
In reply to: [rexCrawler] [Plugin: rexCrawler] Save Group Button Doesn't Save GroupThanks, that did it.
Forum: Plugins
In reply to: [rexCrawler] [Plugin: rexCrawler] Save Group Button Doesn't Save Groupnope. worth a try though.
Forum: Plugins
In reply to: [rexCrawler] [Plugin: rexCrawler] Save Group Button Doesn't Save GroupI’m running 1.0.5.
I’ll try re activating it and see what happens.Here’s what I use:
<a href="<?php echo get_post_meta($post->ID, 'put your custom post type field name here',true) ?>">link text</a>Opera will not load Cufon if there is even 1 empty or 404 stylesheet & with easy post types activated there are 5 stylesheets included with the wrong path.
If you need to Fix this(all other browsers seem to be more forgiving about this), FTP to wp-content/plugins/easy-post-types/classesYou have to edit each file listed here:
custom-checkbox/custom-checkbox.php
custom-checkbox/custom-datefield.php
custom-checkbox/custom-image.php
custom-checkbox/custom-select.php
custom-checkbox/custom-textfield.php
In each file you find this line(Sorry Line # are not the same):
wp_enqueue_style($this->getId().'-style', $this->root. 'style.css');Change it to
wp_enqueue_style($this->getId().'-style', $this->httpRoot. 'style.css');The author defines root and httpRoot
$this->root=dirname(__FILE__).'/'; $this->httpRoot = plugins_url( '', __FILE__).'/';I opened the main plugin file custom-type.php
and noticed scripts were included correctly if using httpRoot
so I put 2 and 2 together.Now Opera loads Cufon.
Forum: Fixing WordPress
In reply to: iframe resizeIframes are really tacky. Why not use an RSS feed plugin instead?
Then you can style the content to match your site.
Of course that would take a lot more work.Forum: Fixing WordPress
In reply to: Possible Bug in Custom Post TypesI’m not sure this has to do with Custom Post Types (unless you wrote a specific CSS statement for this specific post type…) rather you might want to check your stylesheet.
Your body font sets the global font family for your website and if font-family: Arial is only applied to P tags and if you use a Div instead of letting the editor auto add a paragraph… you get the idea.
You might try adding in the stylesheet:
#content p,#content div.center {font: normal 17px Arial,sans-serif;}Forum: Fixing WordPress
In reply to: Navigating/Paging Custom Post Types?That will do it! Thanks MichaelH! (They should include a link to this page from the custom post type page–unless they have and I just didn’t see it,either).
Sorry, it was just a matter of closing Firefox and trying again. No more nag telling me to install Silverlight! Yay
Forum: Plugins
In reply to: [Plugin: WP e-Commerce] Cannot process transaction from shopping cart pageI saw this,too. I think it was because I enabled the Shipping Same As Billing option in Products>>Settings>>Checkout. Because when I turned that off, the Checkout page loaded as expected.
Forum: Plugins
In reply to: [Plugin: WP e-Commerce] awesome WP e-Commerce siteDepending on which wp-e-commerce theme you are using open latest_product_widget.php in wp-e-commerce/widgets and find on lines 29 or 30
$output .= " <img src='index.php?image_id=".$special['image']."&width=100&height=70' title='".$special['name']."' alt='".$special['name']."' id='product_image_".$product['id']."' class='product_image'/>"; } else { $output .= " <img src='". "index.php?image_id={$special['image']}&width=45&height=25' title='".$special['name']."' alt='".$special['name']."' /><br />";see the width and height in the code? you can set it to any you want.
Forum: Plugins
In reply to: wp E-commerce product images not shown – https is added to urlIs it possible you just forgot to load the images to the new server?
Product images are not stored in the database but on the server.
Importing and not losing images is simple:just make sure you have images in the same place as they are linked to in the source of the page. View source or paste the URL into the addressbar.
Merely having https would not block images from showing…if there are images where the link says they are.
Transferring from one database to another is just exporting and importing text files. The process doesn’t inject https into urls.Forum: Plugins
In reply to: Form passing infoWhat is going on is you are not using a full url
like
<input type="hidden" name="invalidurl" value="http://bitesizelife.com/?page_id=1190" />Dreamhost has extensive documentation about this!
http://blog.dreamhosters.com/kbase/index.cgi?area=858Forum: Plugins
In reply to: eCommerce for event registration?If you only have one even at a time to sell it might be overkill to load a whole ecommerce package. PayPal and Google Checkout both generate html for buttons that you can paste into a page or post(using HTML mode of the editor!)When you get the sale your accounts with either option will collect the buyers info for you.
If you need more functionality than a button I use wp-e-commerce on loads of sites and a few of them for making an event a product and collecting fees.Forum: Plugins
In reply to: Show only post in same category only in certain posts