Navaratnam
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Remove Frame [border] imagesStyle.min.css
Remove
background: url(images/pattern-pixel.png) repeat;
Forum: Themes and Templates
In reply to: [Minimatica] [Theme: Minimatica] Blank Page after installTo enable the Featured Thumbnail follow this instruction
Forum: Themes and Templates
In reply to: thumbnail is not appearing while opening my websiteHow do you call the Thumbs? I doubt that the problem is with the host!
Forum: Themes and Templates
In reply to: Who do I contact about redesigning my website theme?I can do it for a small compensation right now! Tell me what you want!
[email modearated]Forum: Themes and Templates
In reply to: wp_page_menu different classesits added by the filter, so the way you try wont work.
Forum: Themes and Templates
In reply to: Stop 2011 theme from downsizing pictures?in admin panel under setting>media
Forum: Fixing WordPress
In reply to: WordPress "add new page" HTML editorTry saving the page from HTML tab. Don’t switch to Visual tab. I read some where that this should word.
The other way is to create a page template and assign that to the blank page within WP.
https://codex.www.ads-software.com/Pages#Creating_Your_Own_Page_Templates
Forum: Fixing WordPress
In reply to: Change WP Login Error messagesYou will have to hack the core WordPress code. It is in includes/user.php file. But make sure that you know what you are doing!
Forum: Fixing WordPress
In reply to: a way to download file after purchase?I would say after the successful payment the API will post the details to the link you point. Direct the other page from there and make sure to verify the referrer from PHP. so that any one trying to access it directly will not gain access.
Forum: Fixing WordPress
In reply to: Impossible Facebook Icon for PagesOk, I don’t understand what you are trying to explain here. If you say that the image is links here
Then you got to check the https://external.ak.fbcdn.net. That is where it is coming from.
Forum: Fixing WordPress
In reply to: Adding WP blog to existing WP websiteyou can install another WP in a sub directory called blog and link it on the main site.
YOu can use the same Database but just change the table prefix in wp_config file or create another database.Forum: Fixing WordPress
In reply to: a way to download file after purchase?Forum: Fixing WordPress
In reply to: Impossible Facebook Icon for Pagesdo you have a link?
Forum: Fixing WordPress
In reply to: authors listing, add DIV tag to PHP?Here you go . . .
<?php //displays all users with their avatar and 3 of their posts (titles) $blogusers = get_users_of_blog(); if ($blogusers) { foreach ($blogusers as $bloguser) { $user = get_userdata($bloguser->user_id); echo '<div id="single-user">'; echo '<p>User ID ' . $user->ID . ' ' . $user->user_firstname . ' ' . $user->user_lastname . '</p>'; echo get_avatar( $user->ID, 46 ); $args=array( 'author' => $user->ID, 'post_type' => 'post', 'post_status' => 'publish', 'posts_per_page' => 3, 'caller_get_posts'=> 1 ); $my_query = null; $my_query = new WP_Query($args); if( $my_query->have_posts() ) { //echo 'List of Posts for ' . user->user_firstname . ' ' . $user->user_lastname; echo '<ul>'; while ($my_query->have_posts()) : $my_query->the_post(); ?> <li><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></li> <?php endwhile; echo '</ul>'; echo '</div>'; } wp_reset_query(); // Restore global post data stomped by the_post(). } } ?>
Forum: Fixing WordPress
In reply to: Tried to change domain, locked out of dashI suggest you to backup the database before doing anything further.
I hope you understand that the DNS needs approx 48 hrs to populate and it is routing correctly at this point. As I see it is pointing to GoDaddy parking page.
if you are to point to the same database, you need to edit 2 entries in wp_option table.
siteurl and home. You will see your old domain entry in there. Just modify it via phpmyadmin.