themattsparks
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How to create a movie social network?Forum: Hacks
In reply to: Fetch content from an external linkI’ve never used this plugin, so I can’t really vouch for it but it may be of some help.
https://wordpress.org/plugins/fetchurl/
I don’t believe it will do exactly what you’re wanting, although it might be a place to start. I’m assuming you’re wanting similar functionality to that of Facebook and other sites when sharing a link. I don’t know of any plugins that replicate that, but someone on the forums might.
Good luck and I hope it helps!
Forum: Fixing WordPress
In reply to: Header image changeTry:
<!--- BEGIN featured image header ---> <?php if (has_post_thumbnail()){ echo'<div class="art-header-noimage">'; the_post_thumbnail('full'); echo '</div>; } else{ echo '<div class="art-header"></div>'; } ?> <!--- END featured image header --->Forum: Fixing WordPress
In reply to: plugins not showing on site?Are you seeing these plugins in your dashboard and not on the front-end (pubic facing) side of your site? Or just not seeing them at all?
Forum: Fixing WordPress
In reply to: Right Clicking Disabled But Want it EnabledHey mumsonfans,
I’m having no issues right clicking on any of the elements on your site. Are you still having this issue?
Forum: Fixing WordPress
In reply to: Updated to 4.0 and now cannot access WP loginGive this a look and see if it helps:
http://www.wpbeginner.com/wp-tutorials/how-to-fix-the-wordpress-white-screen-of-death/
Forum: Fixing WordPress
In reply to: LInking Image to URLIt looks like you’re using the “Magnific Popup” lightbox plugin and any element with a class of “image-link” gets bound to it. Try removing the “image-link” from the anchor tag and see if that helps.