home

web coding solutions

PS3 Home Forum
  • Home
  • Contact

Rename Pages To Something Else In WordPress 2.7.1

Posted by Techyhed on Sunday, June 7th 2009   

Digg it

Bookmark it

Stumble it

Email to friend

7
Jun

They keep making changes in WordPress. All the google searching solutions no longer applies. So I finally figured it out. I wanted to rename “Pages” heading in the sidebar to something else. Had to go into admin, appearance, widgets, Pages, then click the Edit link to the right of Pages:, in the title field, enter new name for it (ex. Menu), click Done….AND THEN CLICK SAVE CHANGES BUTTON!!!   I forgot to click that before, and continued another hour of searching how to do this….got frustrated, so I tried again and realized I didn’t click “save changes” button before….

Filed under: WordPress     
2 Comments   

How to embed multiple instances of mp3, flv, xml playlists in blogengine.net

Posted by Techyhed on Thursday, October 16th 2008   

Digg it

Bookmark it

Stumble it

Email to friend

16
Oct

Blogengine.net only has a few extensions for embedding media. The only one I found to work best is http://www.betaparticle.com/post/2008/02/FLV-Media-Player-for-for-BlogEngineNET.aspx

This “MediaPlayer” allows you to embed mp3, flv, xml playlists. So it supports video and audio, but the best thing of all, it supports multiple embeddings on one page. Even though it’s not advertised to do that, it works. All other mp3 embedding codes I found for blogengine.net only allow 1 instance of the embedded player on one page.

Now how do you customize the look and color easily?

Filed under: BlogEngine.net     Tags: embed, flv, mp3
No Comment Yet   

How to add favicon in Oscommerce cart

Posted by Techyhed on Saturday, September 13th 2008   

Digg it

Bookmark it

Stumble it

Email to friend

13
Sep

Go to http://tools.dynamicdrive.com/favicon/ and upload a small squarish pic representing your site. Upload it to your root folder of your site. Open up catalog/index.php file and add these line right before </head>:

 

<link rel="icon" href="http://yourdomain.com/favicon.ico" type="image/x-icon" />
<link rel="shortcut icon" href="http://yourdomain.com/favicon.ico" type="image/x-icon" />

Filed under: osCommerce     Tags: favicon
34 Comments   

Show Recent Post in BlogEngine.net

Posted by Techyhed on Saturday, August 30th 2008   

Digg it

Bookmark it

Stumble it

Email to friend

30
Aug

BlogEngine.NET 1.4.5.0 comes with a recent post widget but it did not work with my custom theme or even the standard theme. For my custom theme I had to use this code:

 

<h2>Recent Posts</h2>
                <blog:RecentPosts ID="RecentPosts" runat="server" />

This code was needed to show the recent post titles on the right panel. My custom theme is DarkBlog, so it had to go in SidePanel.acsx.

 

Filed under: BlogEngine.net     
No Comment Yet   

Automatically check Newsletter box in create_account.php

Posted by Techyhed on Monday, July 28th 2008   

Digg it

Bookmark it

Stumble it

Email to friend

28
Jul

When customers create a new account in oscommerce, the Newsletter box is not automatically checked for them. Make it be checked by default.

Open create_account.php

Find line:


<td class="main"> </td>
 <!--p echo tep_draw_checkbox_field('newsletter', '1') . ' ' . (tep_not_null(ENTRY_NEWSLETTER_TEXT) ? '<span class="inputRequirement">' . ENTRY_NEWSLETTER_TEXT . '</span>': '');-->

Replace with:
 


<td class="main"> </td>
<!--p echo tep_draw_checkbox_field('newsletter', '1', checked) . ' ' . (tep_not_null(ENTRY_NEWSLETTER_TEXT) ? '<span class="inputRequirement">' . ENTRY_NEWSLETTER_TEXT . '</span>': '');--> 

               

Filed under: osCommerce     Tags: account, create, newsletter, osCommerce
No Comment Yet   

Get rid of image in top right of product listings

Posted by Techyhed on Monday, July 28th 2008   

Digg it

Bookmark it

Stumble it

Email to friend

28
Jul

In oscommerce, in product listings where the page is still index.php, to get rid of the stubborn top right default image, you have to open index.php and

Find line:

 <td align="right"><?php echo tep_image(DIR_WS_IMAGES . $image, HEADING_TITLE, HEADING_IMAGE_WIDTH, HEADING_IMAGE_HEIGHT); ?></td>

and remove that entire line.

Getting rid of all other default oscommerce images were easier, you just had to go the page file name and find the image file name and remove that entire line.

 

Filed under: osCommerce     Tags: images, osCommerce
No Comment Yet   

Change “Top” to “Home” in Oscommerce

Posted by Techyhed on Monday, July 28th 2008   

Digg it

Bookmark it

Stumble it

Email to friend

28
Jul

Here’s a quick and easy one. In the breadcrumb trail, the default installation of oscommerce says “Top”. Change it to “Home” sounds better.

Open includes/languages/english.php

Find line:
define('HEADER_TITLE_TOP', 'Top');
Change to:
define('HEADER_TITLE_TOP', 'Home');

 

Filed under: osCommerce     Tags: breadcrumb, home, osCommerce, top
1 Comment   

Remove “Catalog” from breadcrumb trail in Oscommerce

Posted by Techyhed on Monday, July 28th 2008   

Digg it

Bookmark it

Stumble it

Email to friend

28
Jul

You see this in the top of your pages usually under your logo:

Top >> Catalog >> Your Page >> Your Page

If you installed Oscommerce without putting the files in Catalog folder, then you really don’t need “Catalog” in the breadcrumb.

Open includes/application_top.php

Find lines:

// include the breadcrumb class and start the breadcrumb trail
  require(DIR_WS_CLASSES . 'breadcrumb.php');
  $breadcrumb = new breadcrumb;

  $breadcrumb->add(HEADER_TITLE_TOP, HTTP_SERVER);
  $breadcrumb->add(HEADER_TITLE_CATALOG, tep_href_link(FILENAME_DEFAULT));

 
Remove the last line:

$breadcrumb-&gt;add(HEADER_TITLE_CATALOG, tep_href_link(FILENAME_DEFAULT));

 

Filed under: osCommerce     Tags: breadcrumb, osCommerce
No Comment Yet   

Remove the + from Product Name+ in oscommerce

Posted by Techyhed on Monday, July 28th 2008   

Digg it

Bookmark it

Stumble it

Email to friend

28
Jul

When you’re viewing product listings in Oscommerce, the heading title Product Name+ appears. To remove the “+” open includes/functions/general.php.

Find lines:

// Return table heading with sorting capabilities
function tep_create_sort_heading($sortby, $colnum, $heading) {
global $PHP_SELF;
 

$sort_prefix = '';
$sort_suffix = '';

if ($sortby) {
$sort_prefix = '<a class="productListing-heading" title="' . tep_output_string(TEXT_SORT_PRODUCTS . ($sortby == $colnum . 'd' || substr($sortby, 0, 1) != $colnum ? TEXT_ASCENDINGLY : TEXT_DESCENDINGLY) . TEXT_BY . $heading) . '" href="' . tep_href_link(basename($PHP_SELF), tep_get_all_get_params(array('page', 'info', 'sort')) . 'page=1&amp;sort=' . $colnum . ($sortby == $colnum . 'a' ? 'd' : 'a')) . '">' ;
$sort_suffix = (substr($sortby, 0, 1) == $colnum ? (substr($sortby, 1, 1) == 'a' ? '+' : '-') : '') . '</a>';
}

return $sort_prefix . $heading . $sort_suffix;
}

Replace with:

READ SOME MORE

Filed under: osCommerce     Tags: heading, osCommerce
No Comment Yet   

Oscommerce - How to change width of boxes

Posted by Techyhed on Monday, July 28th 2008   

Digg it

Bookmark it

Stumble it

Email to friend

28
Jul

Oscommerce 2.2 RC2 - The default width for those side boxes is 125. To change to a smaller or larger size, open includes/application_top.php

Find lines:

// customization for the design layout
  define('BOX_WIDTH', 125); // how wide the boxes should be in pixels (default: 125)

 

Change the first 125 to another width size.

Filed under: osCommerce     Tags: box width, osCommerce
1 Comment   
« Older Entries
 

Subscribe to my articles via RSS

Subcribe via Emails:


Enter your email address:

  • Recent Posts
  • Recent Comments
  • Rename Pages To Something Else In WordPress 2.7.1
  • How to embed multiple instances of mp3, flv, xml playlists in blogengine.net
  • How to add favicon in Oscommerce cart
  • Show Recent Post in BlogEngine.net
  • Automatically check Newsletter box in create_account.php
  • Get rid of image in top right of product listings
  • Change “Top” to “Home” in Oscommerce
  • Remove “Catalog” from breadcrumb trail in Oscommerce
  • Remove the + from Product Name+ in oscommerce
  • Oscommerce - How to change width of boxes
  • Melapeceila in How to use error 404 redirect
  • jermcruitte in Rename Pages To Something Else In W…
  • Evaristo in Oscommerce - How to change width of…
  • suvenirforyou in Rename Pages To Something Else In W…
  • строите… in How to add favicon in Oscommerce ca…
  • сталкер in How to add favicon in Oscommerce ca…
  • Tyguy7 in Change "Top" to "Home" in Oscommerc…
  • сесшоп м… in How to add favicon in Oscommerce ca…
  • фильтр д… in How to add favicon in Oscommerce ca…
  • аквариу… in How to add favicon in Oscommerce ca…

Search

Categories

  • osCommerce (11)
  • Comersus (1)
  • WordPress (5)
  • Server (1)
  • vBulletin (1)
  • BlogEngine.net (2)

Archives

  • June 2009 (1)
  • October 2008 (1)
  • September 2008 (1)
  • August 2008 (1)
  • July 2008 (8)
  • June 2008 (9)

Links

Subscribe

  • technorati add aol netvibes rojo myyahoo modern freedictionary subrss chicklet plusmo newsburst ngsub wwgthis subscribes

Browse Our Tag Archives

.htaccess access account add date admin BB Code box width breadcrumb checkout Comersus create customers date email embed error 404 favicon flv heading home images invoice login mp3 newsletter Optimal Title orders osCommerce paypal permalinks random order number redirect scrambled order number SEO SEO Friendly sidebar single post top vBulletin videos WordPress WP Title

©2010 Techyhed