Herm71
Forum Replies Created
-
Forum: Plugins
In reply to: [Discontinued Products] Import via CSV?Sorry it’s taken me a while to get back to this thread, but THANK YOU. I’ll give it a shot.
It looks like you’re using TablePress on this page. Rather than using an image, it would be better to use CSS to change the background. TablePress also has an option to alternate the colors of the rows. Here’s a site I used TablePress on as an example.
http://www.yelapafun.com/casas-santa-cruz/casa-estrella/
You might also considering targeting your .content class (or whatever) such as:.content { background-color: #666666; }Forum: Plugins
In reply to: [Magic Fields 2] Images are not loading properly wp4.1Hi Magenta Cuda,
Thanks for your detailed work! I had to switch to another project for the past day or so but still have this issue. Going to be busy on the other project for the rest of the week but I definitely need to find a solution to my issue. I’ll look over your suggestions in detail this weekend and get back to you with what I came up with. Thanks again for following up on this …Forum: Plugins
In reply to: [Magic Fields 2] Images are not loading properly wp4.1Turns out, Magic Fields2 and ACF are incompatible in the same environment, as they both declare a “get_field()” function, which cancel each other out, so you get a fatal error. Should’ve started with ACF to begin with.
At any rate, I’ll try your suggestion. But, to be sure, the field *does* exist. I have started over with MF2 — reinstalled the database from a backup I made before starting all this. I’ve also reverted my WP install from the 4.3-Alpha I was using yesterday to the “stable” 4.2.2, deactivated all plugins but MF2, recreated my custom post type, recreated a repeating Image Media field, attempted to add an image from WP Media and … nothing. I still get the “broken image” placeholder in the meta area rather than a nice thumbnail.
Would you be able to elaborate on the “SELECT *” suggestion you provided above? Thanks.
Forum: Plugins
In reply to: [Magic Fields 2] Images are not loading properly wp4.1Forget it. Evidently this plugin isn’t being maintained anymore. I’ve wasted an entire day trying to figure this out. I’m switching to Advanced Custom Fields. Much more stable. Much more user friendly.
Forum: Plugins
In reply to: [Magic Fields 2] Images are not loading properly wp4.1array(2) { [1]=> array(2) { [“original”]=> NULL [“thumb”]=> NULL } [2]=> array(2) { [“original”]=> NULL [“thumb”]=> NULL } }
This is the var_dump() of the get_field() of my Image Media field. “original” and “thumb” are both NULL
Forum: Plugins
In reply to: [Magic Fields 2] Images are not loading properly wp4.1This is the exact issue I am having: Custom Post Type -> Image Media Custom Field, “insert into post”
When I do this, I get a “broken image” thumbnail in my meta field, not a nice thumbnail.
MagicFields2 2.3.1 and WP v. 4.3-alpha (pulled from the .git repo)
Just a follow-up to mark this topic “Resolved”
Forum: Plugins
In reply to: [Genesis Grid] Teaser Image Size/ Featured Image SizeHi Momsthewordus,
Thanks for your response. I’ve no problem *defining* the custom image sizes as you describe above. I’ve already got several image sizes definied in my functions.php file. What I would like to do is assign a different teaser image size to different templates. As you mentioned, once the images are defined in functions.php, I’m able to select the various sizes in various parts of my template; for instance, in The Genesis Grid settings in the dashboard. Borrowing from your example, I’d like to use
'child_full'as the featured image on, say,home.phpand I’d like to use'child_full_2'as the featured image on the archive of my custom post-type “Projects”(i.e.archive-projects.php).The developer was kind enough to include a filter,
genesis_grid_loop_args, which allows a person to override the Dashboard settings and customize how the grid displays on different templates. Thus, if I want four teaser columns on myhome.php, I can write a function along the lines offunction homepage_grid_args( $args, $query ) { if( is_home()) $args['teaser_columns'] = 4; return $args; } add_filter( 'genesis_grid_loop_args', 'homepage_grid_args', 10, 2 );What I’m looking for is the “
$arg” for Feature or Teaser Image size. I looked into the code and it appears that[feature_image_size]or[teaser_image_size]would work, but if I put that in a function, like so:function projectpage_grid_args( $args, $query ) { if( is_post_type_archive('projects')) $args['teaser_image_size'] = 'child_full_2'; return $args; } add_filter( 'genesis_grid_loop_args', 'projectpage_grid_args', 10, 2 );I get bupkis. So, my question is, what’s the
$arg[what_goes_here_for_image] = 'what_goes_here_for_image';to over-ride/customize the Feature/Teaser image sizes for different templates.Same here. I’m using Genesis and a custom child theme on nearly every site I administer/develop, each site has its own set of plugins and widgets, but this behavior is occurring on every one of them.
Following up on this, as I “fixed” my problem: “force ssl” was checked on my dev site. Unchecking it in WooCommerce Settings made everything work as intended. Sheesh! Hope this helps another frustrated soul.
Forum: Plugins
In reply to: [WooCommerce] Woo Commerce 404 Page Error for Checkout – DEVASTATEDThought I’d update this forum with my latest: Solved! My solution had to do with forcing the SSL on my dev site. I don’t have SSL on my dev site so when it was forcing “httpS” in the url for my cart page — 404! I un-ticked that option in the settings and all was hunky-dory again.
Forum: Plugins
In reply to: [WooCommerce] Woo Commerce 404 Page Error for Checkout – DEVASTATEDI’m having this exact same issue. Have you found a solution yet? I’m only getting 404 on “Checkout”, like you; and, like you, I’ve done everything I can think of and that has been suggested in forums to no avail. Tried switching back to “ugly” permalinks, tried turning off all my plugins and going back to default theme, created approximately four “new” checkout pages, stuck in the short-code, pointed Woo Commerce at said page in the settings, and each and every time I get a 404 error on “cart”. This is a dev site I’m working on and it’s literally stopped me in my tracks as I can’t continue developing the site’s functionality without this issue fixed. I’ve been dealing with this issue for like three weeks and It’s driving me crazy.
Forum: Plugins
In reply to: [List Custom Taxonomy Widget] dropdown does not workHello! Last night I found this plugin and installed it and I’m getting the exact same problem as yajanssen. The difference is that I’m running WP 3.7. I checked out your changelog and it looks like you fixed this bug for WP 3.6; is there a chance that 3.7 broke it again? At any rate, like I said, this thread describes my experience exactly.
Forum: Plugins
In reply to: share and follow – where did it go???I would be cautious using an older version of S&F. I had an older version on another site that I moved over to a newer site built on WP 3.4.X and it munged it all up. I had to disable the plugin via FTP in order to even get to my dashboard. It’s a great plugin and I hope they continue to support it, but for this new site, I’m going to find another way to implement this functionality. FYI.