• DONATE to NULLED!
    Вы можете помочь Форуму и команде, поддержать финансово.
    starwanderer - модератор этого раздела будет Вам благодарен!

Поиск Поиск плагинов WordPress

Статус
В этой теме нельзя размещать новые ответы.
GravityFlow Automate your business processes 1.4.3
Скрытое содержимое доступно для зарегистрированных пользователей!

Гад, требует лицензионный номер. Но можно обойти, нажав Next при пустом номере лицензии. И далее - поставить галочку - я понимаю риск и бла бла бла...
 
Последнее редактирование:
Nod при установке плагина выдал трояна в файле ...\wp-content\upgrade\duplicator-pro\duplicator-pro\classes\class.tgm.php
Версия Wordpress 4.7.2 Betheme на локалке, при активации ошибка
Плагин не был активирован, потому что он вызвал фатальную ошибку.
Warning: require_once(class.tgm.php:( failed to open stream: No such file or directory in ...\wp-content\plugins\duplicator-pro\classes\class.archive.config.php on line 29
Какую версию скачивали? Здесь несколько версий выложено.
 
Возможна миграция с joomla 1.5 на wordpress 4.x.x ? (количество статей в базе около 2000 )
 
Может быть есть у кого то сборочка калькуляторов для Woocommerce? Типа такого Multistep Product Configurator
 
Ищу Для просмотра ссылки Войди или Зарегистрируйся
590x300.jpg

WooCommerce Extra Product Options 4.4.1
Последнее обновление плагина 27.01.2017
 

Вложения

  • woocommerce-tm-extra-product-options.zip
    1,6 MB · Просмотры: 26
Wishlist Member WooCommerce Plus
Есть ли у кого? В паблике всё перерыл.
Скрытое содержимое доступно для зарегистрированных пользователей!
 
Кому нужен шорткод, показывающий сумму по полю в заданном диапазоне дат? Сам модифицировал. Добавить в файл functions.php вашей темы. Команда в виде [donations form=9 start_date="2017-02-01" end_date="2017-02-03"]

Код:
<?php

// http://pastebin.com/kHpaHQvi originally
// http://www.gravityhelp.com/forums/topic/show-total-donations
// usage: [donations form=9] where 9 is the form ID
add_shortcode('donations', 'total_donations');
function total_donations($atts) {
        $form_id = $atts['form'];
        $start_date = $atts['start_date'];
        $end_date = $atts['end_date'];

        // function to pull all the entries for one form
        $donations = RGFormsModel::get_leads($form_id);
        // start the total at zero
        $total = 0;
        echo "C "; echo $start_date; echo " по ";
        echo $end_date;
        // initialize a counter for the number of donations made
        $i = 0;
        // loop through all the returned results
        foreach ($donations as $amount) {
                // add each donation amount to the total
                // change 3 here to the field ID which holds the donation amount
          $data = $amount[49];
          if ($data >= $start_date && $data <= $end_date){$total += $amount[48];}
                // increment the counter so we know how many donations there are as well
                $i++;
        }
        // do some formatting and return the html output from the shortcode
        $output = "Итого продаж $total";
        // just the string above will be returned.  You can style it here or where you are using the shortcode
        return $output;
}
// needed for the above to process the donation shortcode in sidebar widget
add_filter('widget_text', 'do_shortcode');
?>
 
Статус
В этой теме нельзя размещать новые ответы.
Назад
Сверху