Anjara
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Login Logout problemHey,
Hope this link will help you: https://codex.www.ads-software.com/Function_Reference/wp_logout_url
Hitesh Anjara
Forum: Hacks
In reply to: Yarpp for multisite questionHello,
I think you need to install that yarpp plugin from the network admin side.
URl will be – https://firstblog.com/wp-admin/network/plugins.php
Hope this will help you!
Forum: Fixing WordPress
In reply to: ProSense ThemeHey,
I think you need to set the widget in Sidebar 1 box in widget setting page in admin side.
That widget setting link will be – https://yoursitename.com/wp-admin/widgets.php
Forum: Fixing WordPress
In reply to: Installing RSS-feedsDid you tried this – https://codex.www.ads-software.com/WordPress_Feeds ?
Forum: Fixing WordPress
In reply to: create custom RSSNo plugin require for RSS FEED in wordpress.
This link will help you – https://codex.www.ads-software.com/WordPress_Feeds
??
Forum: Themes and Templates
In reply to: Help editing pages to appear under subpagehttps://codex.www.ads-software.com/WordPress_Menu_User_Guide
Hope, above link will help to manage menu..
Forum: Fixing WordPress
In reply to: Can Someone Please tell me where the nav bar code isYo welcome.. ??
Forum: Fixing WordPress
In reply to: Can Someone Please tell me where the nav bar code isIf you want to give blue color to whole nav bar, then go to line – 322 in your style.css file. and replace this code for #menu
#menu { filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#111',endColorstr='#111',GradientType=0); background:blue; border:1px solid #326cb3; border-radius:7px; clear:both; float:left; width:1000px; margin:0; padding:7px 0 0; }
OR
You can change the background color only. ??
Forum: Fixing WordPress
In reply to: Syntax Errors .. HELP !!First, Take a backup of wp-content folder.
Download the latest wordpress: https://www.ads-software.com/download/
Replace whole wp-includes folder with the new downloaded worpdress folder (wp-includes) only.
And Dont try to update any code in wp-includes and wp-admin folder…
Forum: Fixing WordPress
In reply to: Can Someone Please tell me where the nav bar code isPlease give space between color code and !important word in color property.
Like this –
color: #326cb3 !important;
OR you can replace whole code –
#menu a { color: #326cb3 !important; display: block; line-height: 40px; padding: 0 15px; text-decoration: none; text-transform: uppercase; }
Forum: Fixing WordPress
In reply to: Syntax Errors .. HELP !!You can download that function.php file from wordpress default theme..
WordPress Twenty Ten Theme: https://www.ads-software.com/extend/themes/twentyten
Forum: Fixing WordPress
In reply to: Syntax Errors .. HELP !!Wow, are you editing the wp-includes function.php ?????
I think you should not change/update any code from wp-admin and wp-includes folder.
I think we should customize the code of wp-content folder files.
Well, I think you need to replace whole function.php file in your theme folder. (/wp-content/THEME_FOLDER/function.php)
Forum: Fixing WordPress
In reply to: Syntax Errors .. HELP !!I think you have customized the “twenty_ten” wordpress theme.
First, you need to replace this code twenty_ten function.php file.
if ( ! function_exists( 'twentyten_posted_in' ) ) : /** * Prints HTML with meta information for the current post (category, tags and permalink). * * @since Twenty Ten 1.0 */ function twentyten_posted_in() { // Retrieves tag list of current post, separated by commas. $tag_list = get_the_tag_list( '', ', ' ); if ( $tag_list ) { $posted_in = __( 'This entry was posted in %1$s and tagged %2$s. Bookmark the <a href="%3$s" title="Permalink to %4$s" rel="bookmark">permalink</a>.', 'twentyten' ); } elseif ( is_object_in_taxonomy( get_post_type(), 'category' ) ) { $posted_in = __( 'This entry was posted in %1$s. Bookmark the <a href="%3$s" title="Permalink to %4$s" rel="bookmark">permalink</a>.', 'twentyten' ); } else { $posted_in = __( 'Bookmark the <a href="%3$s" title="Permalink to %4$s" rel="bookmark">permalink</a>.', 'twentyten' ); } // Prints the string, replacing the placeholders. printf( $posted_in, get_the_category_list( ', ' ), $tag_list, get_permalink(), the_title_attribute( 'echo=0' ) ); } endif;
Then, It will work, and after that you can change/update that code.
Let me know if you face any problem on the same.
Forum: Fixing WordPress
In reply to: Syntax Errors .. HELP !!you need to give me the code which is in function.php file at line 198
As you told
/home/ixall012/public_html/www.ume-collection.co.uk/wp-content/themes/imbalance/functions.php on line 198
I need to see that code, so that we will get solve it…
You can try to separate those <p> tag, using css code.
Here you can add this type of css in your style.css file at theme folder.
p { clear:both; margin-bottom:5px; }
Hope this will help you!