This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<h1 style="text-align: center;">CyberMonday del 7 al 9 de Noviembre. Descuentos de hasta un 50%.</h1> | |
<div class="col-md-12"> | |
<div class="no content"> | |
<div id="rpt_pricr" class="rpt_plans rpt_3_plans rpt_style_basic"> | |
<div class=""> | |
<div class="rpt_plan rpt_plan_0 "> | |
<div class="rpt_title rpt_title_0">Suscripción Mensual<br /> <strong>[wpgeo_campaign id='1'] </strong><span style="font-size: 12px;">mensual</span><br /> <span style="font-size: 14px;"><strong>(MES A MES)</strong></span></div> | |
<div class="rpt_features rpt_features_0"> | |
<div class="rpt_feature rpt_feature_0-0" style="color: black;"><strong>Acceso ilimitado a todos nuestros Cursos Premium </strong><a class="tooltipsc" href="#"><br /> Minería a Cielo Abierto<br />Planificación Estratégica del Negocio Minero<br />Gestión de Proyectos Mineros<br />Minería Subterránea<br />Emprende en Minería<br />Business Intelligence<br />Administración de Contratos<br />Excel Nivel I<br />Excel Avanzado<b |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SetEnv PHPRC /home/mineclas/public_html/php.ini | |
# BEGIN WordPress | |
<IfModule mod_rewrite.c> | |
RewriteEngine On | |
RewriteBase / | |
RewriteRule ^index\.php$ - [L] | |
RewriteCond %{REQUEST_FILENAME} !-f | |
RewriteCond %{REQUEST_FILENAME} !-d | |
RewriteRule . /index.php [L] | |
</IfModule> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.btregister{border-radius: 3px;background-color: #2279c4;margin: 0;color: #fff;border: 0 none;padding: 4px 9px;font-weight: bold;} | |
@media only screen and (max-width:767px) { | |
.image-resized img {width:100%;height:auto;} | |
} | |
/* 240px screens */ | |
@media only screen and (max-width: 319px) { | |
.image-resized img {width:240px;height:auto;} | |
} | |
/* 320px screens */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Email Header | |
* | |
* @author WooThemes | |
* @package WooCommerce/Templates/Emails | |
* @version 2.4.0 | |
*/ | |
if ( ! defined( 'ABSPATH' ) ) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Admin new order email | |
* | |
* This template can be overridden by copying it to yourtheme/woocommerce/emails/admin-new-order.php. | |
* | |
* HOWEVER, on occasion WooCommerce will need to update template files and you | |
* (the theme developer) will need to copy the new files to your theme to | |
* maintain compatibility. We try to do this as little as possible, but it does | |
* happen. When this occurs the version of the template file will be bumped and |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
//Header File | |
?> | |
<!DOCTYPE html> | |
<html <?php language_attributes(); ?>> | |
<head> | |
<meta charset="<?php bloginfo( 'charset' ); ?>"> | |
<title> | |
<?php echo wp_title('|',true,'right'); ?> | |
</title> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This simple code work fine using libcurl versions before 7.18.x. | |
<?php | |
$ch = curl_init("www.example.com/curl.php?option=test"); | |
curl_setopt($ch, CURLOPT_HEADER, 0); | |
curl_setopt($ch, CURLOPT_POST, 1); | |
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); | |
$output = curl_exec($ch); | |
curl_close($ch); | |
echo $output; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
# Demonstrates how to add new contact to campaign. | |
# JSON::RPC module is required | |
# available at http://github.com/GetResponse/DevZone/blob/master/API/lib/jsonRPCClient.php | |
require_once 'jsonRPCClient.php'; | |
# your API key is available at | |
# https://app.getresponse.com/my_api_key.html | |
$api_key = 'Your_API'; | |
# API 2.x URL | |
$api_url = 'http://api2.getresponse.com'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
# Demonstrates how to add new contact to campaign. | |
# JSON::RPC module is required | |
# available at http://github.com/GetResponse/DevZone/blob/master/API/lib/jsonRPCClient.php | |
require_once 'jsonRPCClient.php'; | |
# your API key is available at | |
# https://app.getresponse.com/my_api_key.html |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* The -functions.php file is a good place to store miscellaneous functions needed by your plugin. | |
* | |
* @package BuddyPress_Course_Component | |
* @since 1.6 | |
*/ | |
/** |