Justin Peacock
Forum Replies Created
-
Forum: Plugins
In reply to: [Device Mockups] Device Mockup in WidgetAre you placing this shortcode within a page or are you using
do_shortcodewithin a page template?Something is causing the stylesheets to not load specific to your site because http://www.dm.byjust.in/ is using 1.5.1 and is loading.
Forum: Plugins
In reply to: [Device Mockups] CSSIs my plugin adding extra p and br tags even when it’s not being used?
Forum: Plugins
In reply to: [Device Mockups] CSSHey Jason,
Have a link I can take a look? The update should actually re-prioritize wpautop to prevent auto formatting inside shortcodes.
Thanks,
JustinForum: Plugins
In reply to: [Device Mockups] Device Mockup in WidgetHey Marxeo,
I’ve added this filter back in 1.5.1.
Thanks,
JustinForum: Plugins
In reply to: [Device Mockups] Device Mockup in WidgetHey Marxeo,
Thanks for pointing this out. I’ll push an update for this soon. In the meantime you can add the following to your theme and it will fix it.
add_filter('widget_text', 'do_shortcode');Thanks,
JustinForum: Plugins
In reply to: [Device Mockups] Gallery SliderFor those updating to 1.5, please note that [dm-gallery] is no longer needed. You can just use [gallery]
Forum: Plugins
In reply to: [Device Mockups] I am a newbie and can't get the image to displayResolved with example above.
Forum: Plugins
In reply to: [Device Mockups] Apple WatchHey Joe,
I’m starting work on addons for DM. Follow @device_mockups for updates on it.
Thanks
JPForum: Plugins
In reply to: [Device Mockups] iPhone Device Won't CentreResolved with example above.
Forum: Plugins
In reply to: [Device Mockups] Autoplay VideoResolved with example above.
Forum: Plugins
In reply to: [Device Mockups] Use together with Ultimate Shortcodes pluginThis might be a caching issue. Can you send me a link to where you’re having the issue?
Forum: Plugins
In reply to: [Device Mockups] Use together with Ultimate Shortcodes pluginHey compelling,
I just pushed a major update to DM. Can you update and see if you still have issues with the other shortcode plugin?
Thanks!
JPForum: Plugins
In reply to: [Device Mockups] Gallery Slider Image Not AlignedHey kjjtruong,
I just pushed a pretty big update to DM. The gallery slider is completely re-written and uses the WordPress built in gallery shortcode. So you’ll need to use [gallery] instead of [dm-gallery].
If you still have issues after updating, it could be a theme conflict but I’ll see if I can help out.
Thanks!
JPForum: Plugins
In reply to: [Device Mockups] How could I use with Featured Images?Hey MulderDSM,
Device Mockups isn’t built to use featured images BUT it’s possible to modify your theme to work along with DM. This would be a way I would go about doing it.
In your theme, where you’d like the shortcode/featured image to show, add the following.
<?php if ( has_post_thumbnail() ): $dm = '[device type="imac"] ' . the_post_thumbnail( 'large', array( 'alt' => get_the_title() ) ) . ' [/device]'; echo do_shortcode( $dm ); endif; ?>I haven’t tested this so be sure to mess around with it. You’ll want to change the type to whichever device type you want to use.
Thanks,
JPForum: Plugins
In reply to: [Device Mockups] dm-style.min.css throwing warningsHey snaphappyme,
Placing a * before a property in CSS is a browser hack for IE.
And for your first question, a semicolon isn’t needed after the last property statement in CSS.