<a href="https://console.cloud.google.com/apis/credentials">Get Your Api Credentials Here</a> <a href="https://calendar.google.com/calendar">Get your Calender ID</a> <?php include_once("wp-load.php"); function get_calender_events() { $params = array(); /*Get current date*/ $current_date = date('Y-m-d H:i:s'); /*Convert it to google calendar's rfc_format */ $rfc_format = date("c", strtotime($current_date)); $params[] = 'orderBy=startTime'; $params[] ='maxResults=100'; $params[] = 'timeMin='.urlencode($rfc_format); $url_param = ''; foreach($params as $param) { $url_param.= '&'.$param; } $calender_id = "calender_id"; $client_key = "client_key"; $url = "https://www.googleapis.com/calendar/v3/calendars/".$calender_id."/events?key=".$client_key."&singleEvents=true".$url_param; $list_events = wp_remote_post($url, ...
up-sell products:
app/design/frontend/base/default/layout/catalog.xml<block type="catalog/product_list_upsell" name="product.info.upsell" as="upsell_products" template="catalog/product/list/upsell.phtml">
<action method="setColumnCount"><columns>4</columns></action>
<action method="setItemLimit"><type>upsell</type><limit>4</limit></action>
</block>
if your custom theme requires removal of up-sells, you can do so easily
just by adding the following to your theme local.xml layout file.
<?xml version="1.0"?>
<layout version="0.1.0">
<catalog_product_view>
<remove name="product.info.upsell" />
</catalog_product_view>
</layout>
cross-sell products:
app/design/frontend/base/default/layout/checkout.xml
<block type="checkout/cart_crosssell" name="checkout.cart.crosssell" as="crosssell" template="checkout/cart/crosssell.phtml"/>
if your custom theme requires removal of cross-sell products, you can
do so easily just by adding the following to your theme local.xml layout
file.
<?xml version="1.0"?>
<layout version="0.1.0">
<checkout_cart_index>
<remove name="checkout.cart.crosssell" />
</checkout_cart_index>
</layout>
Related Products
app/design/frontend/base/default/layout/catalog.xml
<reference name="right">
<block type="catalog/product_list_related" name="catalog.product.related" before="-" template="catalog/product/list/related.phtml"/>
</reference>
if your custom theme requires removal of related products, you can do
so easily just by adding the following to your theme local.xml layout
file.
<?xml version="1.0"?>
<layout version="0.1.0">
<catalog_product_view>
<remove name="catalog.product.related" />
</catalog_product_view>
</layout>
Comments
Post a Comment