realph
-
Redeem Digital Download Code?
@blackhawkso Could you point me in the direction of how to do something like this? Sorry, I'm new to this.
-
WordPress + MAMP PRO
Problem solved: Hadn't updated the table_prefix. Duh!
-
Retrieving the Attachment ID
@chrisburton Thanks a bunch bud!!!!! I saw that SE question last night, but obviously I was too tired to process. This seems to work: $attachment_id = get_sub_field('background_photo'); $image_attributes = wp_get_attachment_image_src( $a…
-
From Wordpress to Kirby
I do agree with @chrisburton though. When it comes to added functionality, there are only a handful of plugins that hook into extending WordPress elegantly without bloat.
-
From Wordpress to Kirby
I just heard about Kirby and like the sound of it. Jessica Hische just relaunched her site with it. http://jessicahische.is/awesome It sounds pretty awesome!
-
Retrieving the Attachment ID
@chrisburton Still nothing. Really appreciate the help and all, this has been killing me for hours. I don't know what could be the problem.
-
Retrieving the Attachment ID
@chrisburton That isn't returning anything. :s
-
Retrieving the Attachment ID
@chrisburton I'm trying to use it as a selector. I need to give each image a unique ID.
-
Retrieving the Attachment ID
This here: $image = get_sub_field('background_photo'); var_dump($image); Returns this: "string(109) "http://localhost:8888/bit-simple/wp-content/uploads/2013/01/4acae3924ef6d13cdc85f14979a2ffe0da15cb05-copy.jpg" " …
-
Retrieving the Attachment ID
@chrisburton I'm going to be honest. I have no clue what to do with that. I do know that that value is stored in id, as the array example they show after that line. But how to retrieve it I have no idea.
-
Retrieving the Attachment ID
@chrisburton How would I call that? I've tried this: This just returns the image URL again.
-
Custom Post Type Appear in Loop
So, I think I managed to do it. I added this before if(have_posts()): // query the posts of your custom post types query_posts( array( 'post_type' => array( 'post', …
-
Custom Post Type Appear in Loop
@andy_unleash Sorry, I mean mixed within the normal posts on the homepage.
-
Crop Images Like This?
So in regards to webkit masks, is there a way to create webkit masks purely of CSS, no images? As that shape's pretty basic.
-
Crop Images Like This?
@instantMash Not really. Using multiple background images behind that image.
-
Crop Images Like This?
I need it to be an image, possibly inside a div. Not keen on image masks, wondered if there was another way around this.
-
Multiple Background Solution?
@wolfcry911 Still wouldn't be a viable solution. The background cuts off when the browser's width is stretched beyond 2100px. Also using two separate background images makes it more dynamic, allowing, for example: responsive design if I de…
-
2 Repeating Backgrounds Starting at Different Points
Ok, so I think I found a solution here. I'm using body:after to create a "faux background" that starts from the left of the browser window. The benefit of this is no extra divs, and just a few lines of CSS. I then give my content div …
-
Multiple Background Solution?
Ok, so I think I found a solution here. I'm using body:after to create a "faux background" that starts from the left of the browser window. The benefit of this is no extra divs, and just a few lines of CSS. I then give my content div …
-
jCarousel Lite Not Working in IE 6/7/8
Nice to be of some help!
-
Multiple Background Solution?
@wolfcry I'm trying to achieve it a different way here. If you look at the codepen @pmac627 whipped up here, you still have the problem when you resize the browser width the background is then cut off. I'm trying to find a solution around …
-
Make Sidebar Height 100%
@jurotek Perfecto! I owe you a beer! Thanks dude!!!
-
Is It Possible to Do This with CSS?
@Schwarttzy Fantastic solution! But do you know a way of keeping the container a fixed width? i.e. 960px
-
2 Repeating Backgrounds Starting at Different Points
Think I might have worked it out. Solution incoming!
-
2 Repeating Backgrounds Starting at Different Points
@pmac627 The problem with that, is that the background shifts when you resize the browser. I need that sidebar background to stay put even when the browser is resized.
-
2 Repeating Backgrounds Starting at Different Points
@wolfcry911 I'm seriously confused. Mind showing me what you mean on this: http://codepen.io/anon/pen/phbzd
-
2 Repeating Backgrounds Starting at Different Points
@wolfcry911 I'm confused. So, you want me to make a wide image of bg.jpg, and center it on the container?
-
2 Repeating Backgrounds Starting at Different Points
@joshuanhibbert So here's what I'm working with: I'm trying to have it so the sidebar's background image extends all the way to the far left of the browser. http://codepen.io/anon/pen/phbzd
-
2 Repeating Backgrounds Starting at Different Points
@joshuanhibbert But my elements are only as big as the outlines I've drawn. Am I missing something here?