DXigner Resources
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Replace header words with logofind the script above : < span > .. title=” <? php echo esc_attr( get_bloginfo( ‘name’, ‘display’ ) ); ?>” rel=”home”><?php bloginfo( ‘name’ ); ?>< / span>
Remove the whole script from span to end of span, replace with <img src=”logo.jpg” width=”xx” height=”xx” border=”0″>
Forum: Fixing WordPress
In reply to: View entire draft website WITHOUT publishingIf you try to prevent the Search Engine to “crawl” your page, you can Block your website from Search Engine, Admin > Setting > Privacy
Site Visibility: Select “I would like to block search engines, but allow normal visitors”
Then, not to advertise or promote the URL until you’re ready to publish. THerefore, you can do what you like (publish a test post or anything you like to).
I believe no one will know the website unless those who know your domain.
Forum: Fixing WordPress
In reply to: View entire draft website WITHOUT publishingThere’s no direct link from a draft post to another draft post unless you publish it.
Forum: Fixing WordPress
In reply to: Add the pageGo to Appearance > Widgets
Drag “Recent Post” into sidebar, it will shows the headlines of recent post, you can set the no. of post limits as you like.Forum: Fixing WordPress
In reply to: Static site to wordpressFor the static page, you can actually create page at “Page” in admin.
Just Add New page, key in your static page’s title with the content, if there’s something playing with html, you can click on “HTML” and write html coding+content as usual.
To display the page’s link in your wp site, did you notice there’s a “Sample Page” menu on the right top of your wp site?
There’s actually 2 ways to make the Static Pages’ link appear on your navigation bar
I’m not sure if “Sample page” exist since you installed WP or you write it yourself under Editor,Let’s say if it’s automatically appeared, Then go to Appearance > Menus
Create a new Menu (right column) with any name you like to
Then choose for Add Page into Menu (one of the block at left column), add all the created pages into the Menu and click “Save”.Then add the Created Menu at “Theme Location” block at left column.
If it’s written by yourself under Editor, here’s the other way to write it:
Create the navigation section yourself, then write the name of the created page add URL for the name. If you not sure with the URL address, back to “Page” in Admin, click on the created page, below the keyed-in topic, you will see the URL address. Highlight and copy, Back to Editor and paste the URL for the Name.Hope this help.
Forum: Themes and Templates
In reply to: Resizing sidebarMayb you can post the css script for the way you define the style for your sidebar. As well as sidebar source code function in function.php.
Or else we hardly determine the problem.
Forum: Themes and Templates
In reply to: Bad Request ::: error messageBest way is reinstall WordPress 🙂 if same case happen, it probably related with the hosting you’re using.
Go editor, look for style sheet(style.css)
At the top of the file, you will find
body { } few lines after it define the theme name and description.
With body { }, edit the color: #number;
Change the number to the color u like by using color
Code. Lastly, update the file, your default
Text color shall change after that.[link removed]
Forum: Themes and Templates
In reply to: Resizing sidebarU may edit it in style.css (style sheet) find where the theme
Define its sidebar.
[link removed]Forum: Themes and Templates
In reply to: Widgets questionsIf you would like to add additional side bar to display your widget which is separated with the original 1, you need to define a new sidebar in function.php.
If you do not know where to place, simple click ctrl+f (windows) or cmd+f(Mac), find ‘sidebar’, find the coding where the theme define sidebar in function.php. Copy and paste the whole sidebar script, define a new name for it by editing the old name. Then update.
The new sidebar should appear in widgets page now
[link removed]
Forum: Themes and Templates
In reply to: Only show post images in the single post page.Can you repeat your question? So are you trying to show or hide? And what for you add it since u wanna hide?
Forum: Themes and Templates
In reply to: My blog dissapeared – white screenFew reason that may cause a WordPress site become blank page.
1) Changes of path name, I.e wp-content & wp-includes
2) Error of configuration which cause disconnection between index.php and wp-content or wp-includes.
3) Wrong coding which effect the WordPress root coding, usually if there’s wrong coding in theme file, it will appear error notice instead of white screen. So I guess u have change something in root folder or wp-includes.There’s no restore button (or maybe it does, but I can’t find). The only way is backup your WordPress database (I.e using phpmyadmin to export the wp database). Then
Remove and reinstall your WordPress. If you’re using auto database creation. Back to the new WordPress database, remove all the existing database table (make it into empty) and import your back up database.Your existing settings, post and page should be restored. But you need to find back the theme. If your theme is working fine, use FTP to make a backup copy of your theme before you remove the faulty WordPress. After reinstall, transfer the backup theme back to your wp-content/theme . Back to appearance and active
It back.Hope this is clear and help!
[link removed]
Forum: Themes and Templates
In reply to: How is made site like this?It can actually be done by using wordpress by changing the way of display where you can edit in Main Index, Single post.
All you need to do is just remove the contents while just showing the title, date, author,and category only at the Index Page (or custom Home Page).
For single post page. You can define the output display by using CSS.
OR even directly try it by “Add New Post”
[Code moderated as per the Forum Rules. Please use the pastebin]
You can try the above code for similar output. Add new post, copy and paste the above code, click preview / or publish and view.
Hope this helps.
[sig moderated as per the Forum Rules]
Forum: Themes and Templates
In reply to: Adding a search box to Pilcrow's menu🙂 No problem.
Forum: Themes and Templates
In reply to: Adding a search box to Pilcrow's menuYou may need to play with CSS
go to style.css at Appearance – Editor
Add this following script at bottom
/* Top Search Bar */
#nav .topsearchbar {
float: right;
width: 250px;
height: 20px;
}then go to Header(header.php) in Editor
find the script:[Code moderated as per the Forum Rules. Please use the pastebin]
The searchbar should be appeared at the navigation part.
Hope this helps.
[sig moderated as per the Forum Rules]