Sykat
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Posts dissappeared from page after changing template.You didn’t mention the theme name and any kind of specific information so that we can understand your problem.
Forum: Fixing WordPress
In reply to: How To disable a plagin on mobile device?Thank you.
Forum: Fixing WordPress
In reply to: Trouble with attatchment ID.Somebody help please.
Forum: Fixing WordPress
In reply to: How to allow Registered users(subscribers) to PostWhat do u mean by “published automatically”?
Forum: Fixing WordPress
In reply to: How to allow Registered users(subscribers) to PostBy default, new users are only subscriber who can comment. If u want to let them write then go to Settings>General>New User Default Role>Author.
And if u wish to give writing permission to specific users then Users>All users>User Name>Set role of that user.Forum: Fixing WordPress
In reply to: How to add a field in custom post type?Without plugin
Forum: Fixing WordPress
In reply to: text on both sides (left and right) of an imagesHe probably asking
abcdefghij [img] klmnopqrstuvwxyz.I never saw anything like this.
Forum: Fixing WordPress
In reply to: Advance ajax loader save bandwidth?anyone?
Forum: Fixing WordPress
In reply to: text on both sides (left and right) of an imagesonly possible for 2 column. not possible for 1 column.
Forum: Fixing WordPress
In reply to: I want to redirect wp-login and register to my "oops" pagewarning: No retreat
edit wp-login.php > delete all code > place a redirect to your opps page.<?php $oppslink = 'http://example.com/opps.php'; //your opps page Header( "HTTP/1.1 301 Moved Permanently" ); Header( "Location: $oppslink" ); exit(0); ?>Forum: Fixing WordPress
In reply to: Why doesn't this work???use
<span><br/></span>for line break or<div><strong><span style="color: #3366ff;">Story Line:</span></strong> Buddy (Will Ferrell) was.....</span></div>to place it under image.Forum: Fixing WordPress
In reply to: I want local url for wp_get_attachment_url()I got it
$url = wp_get_attachment_url(id); //id is file's id $urllocal = explode(site_url(), $url)[1];Forum: Fixing WordPress
In reply to: How do I remove the home button top left corner?That bis breadcrumb. Do you want to remove it from homepage only or from all page. the code is located in the bottom of your theme folder’s heder.php (can varies for different theme)
Forum: Fixing WordPress
In reply to: Text refuses to center like I need it toYour question is confusing. Do you want to remove the margin of left and right side both? or you talking about your navbar? Your navbar is situated in a bit right side. That’s it? If yes then it is not wp but simple css problem.
Forum: Fixing WordPress
In reply to: wp_get_attachment_url() is showing albumart of an mp3 fileI am a goddamn fool. Acctually The mp3 file has created a cover art and the id was not the mp3’s but that cover art’s. Problem solved and case closed.