gspsites
Forum Replies Created
-
Forum: Plugins
In reply to: [AI Engine] internal linkingHi @tigroumeow,
Nice, create internal links by hand is really time consumin, so i’m hoping to the this feature, thanks
Forum: Plugins
In reply to: [Brazilian Market on WooCommerce] bug ao ativar pessoa fisica + juridica@claudiosanches deixa eu te enviar o print do erro
@munayam thanks a lot, i dont know how it turn off, because it was working, then stopped, but it was the problem, thanks.
Forum: Plugins
In reply to: [Tutor LMS - eLearning and online course solution] youtube player size issuethanks, i’ve deactivated the lazy load option and now it’s perfect, but since it’s a known issue, this’ll be fixed?
sure, sorry
https://gspsites.com/assinatura/#planosjust click in “assinar”
Forum: Plugins
In reply to: [Tutor LMS Elementor Addons] about couse on couse pageHi, in there a way to change from where the plugin get the information, from the excerpt to the description? would be much better, since the excerpt is very limited
Forum: Plugins
In reply to: [Tutor LMS - eLearning and online course solution] ShortcodeBINGO!!
now its working like a charm, here is the complete code to create a new page in the woocommerce my account page, give it priority in the list, create a call a shortcode from the enrolled courses
/* ----------- painel wordpress ----------- */ // Adiciona aba "Meus Cursos" na página "Minha Conta" do WooCommerce add_filter( 'woocommerce_account_menu_items', 'custom_tutorlms_add_courses_tab', 999 ); function custom_tutorlms_add_courses_tab( $menu_links ){ $menu_links = array_slice( $menu_links, 0, 2, true ) + array( 'meus-cursos' => sprintf( 'Meus Cursos', 'text_domain' ) ) + array_slice( $menu_links, 2, NULL, true ); return $menu_links; } // Cria endpoint para a aba "Meus Cursos" add_rewrite_endpoint( 'meus-cursos', EP_ROOT | EP_PAGES ); // Fun??o que carrega o conteúdo da aba "Meus Cursos" add_action( 'woocommerce_account_meus-cursos_endpoint', 'custom_tutorlms_courses_endpoint' ); function custom_tutorlms_courses_endpoint() { echo do_shortcode('[my_shortcode]'); } //fun??o pra carregar a pagina do tutor function my_custom_shortcode() { ob_start(); include WP_PLUGIN_DIR . '/tutor/templates/dashboard/enrolled-courses.php'; return ob_get_clean(); } add_shortcode( 'my_shortcode', 'my_custom_shortcode' ); /* ----------- fim ----------- */
Forum: Plugins
In reply to: [Tutor LMS - eLearning and online course solution] Shortcodei two want it, if you can help us would be great
Forum: Plugins
In reply to: [Tutor LMS - eLearning and online course solution] enrolled coursesthis is the code i’ve puted in the function.php
/*remove the tabs i dont want*/ add_filter('tutor_dashboard/nav_items', 'remove_some_links_dashboard'); function remove_some_links_dashboard($links){ unset($links['reviews']); unset($links['wishlist']); unset($links['my-quiz-attempts']); unset($links['question-answer']); return $links; } /*add a tab i want*/ add_filter('tutor_dashboard/nav_items', 'add_some_links_dashboard'); function add_some_links_dashboard($links){ $links['custom_link'] = [ "title" => __('Meus Downloads', 'tutor'), "url" => "/painel/downloads/", "icon" => "tutor-icon-download-bold", ]; return $links; } /*create a shorcode do show the /my-accounts/downloads/ content*/ function my_account_downloads_shortcode() { if ( is_user_logged_in() ) { ob_start(); wc_get_template( 'myaccount/downloads/' ); return ob_get_clean(); } } add_shortcode( 'my_account_downloads', 'my_account_downloads_shortcode' );
this is the code i’ve puted in the tutor/templates/dashboard/downloads/downloads.php
<?php /* Template Name: My Account Downloads */ get_header(); ?> <div id="tutor-dashboard-content"> <?php echo do_shortcode('[my_account_downloads]'); ?> </div> <?php get_footer();
can anyone now whats wrong?
ps.: i’ve tried add the file downloads.php in the in the tutor/templates/dashboard/ folder, but same error
Forum: Plugins
In reply to: [Tutor LMS - eLearning and online course solution] enrolled courseshi, thanks, i read that, but i can add a link to the menu, but can i add a new tab with content with shortcode? i want to add the content of the woocomemrce my account download tab
i’ve created a shortcode that shows the downloads content [my_account_downloads], and tried adding a download folder inside the tutor/templates/dashboard/ and a download.php file with the code
<?php /* Template Name: My Account Downloads */ get_header(); ?> <div id="tutor-dashboard-content"> <?php echo do_shortcode('[my_account_downloads]'); ?> </div> <?php get_footer();
to call the shortcode inside, but it appear that the page dont exist, any clue?
- This reply was modified 2 years, 1 month ago by gspsites.
Forum: Plugins
In reply to: [Tutor LMS - eLearning and online course solution] enrolled coursesuma alternativa interessante seria colocar a aba de downloads do woocommerce dentro do painel do tutor
- This reply was modified 2 years, 1 month ago by gspsites.
Forum: Plugins
In reply to: [Efí Bank] bugn?o estou tendo muita sorte, olha o erro agora
vou precisar desativar novamente o plugin, chato isso
- This reply was modified 2 years, 1 month ago by gspsites.
Forum: Plugins
In reply to: [Efí Bank] bugbom dia, fiz a atualiza??o e o teste, mas mesmo preenchido no formulário ele continua pedindo no plugin do gerencianet, n?o teria como o gerencianet puxar essa informa??o do formulário, igual os outros plugins?
Forum: Plugins
In reply to: [Efí Bank] bugeu utilizo o Brazilian Market on WooCommerce que é o que todo mundo precisa usar, ele adiciona cpf/cnpj – https://isopasse.com.br/
Forum: Plugins
In reply to: [Efí Bank] bugatualizei, configurei e deu tudo certo. Só um detalhe, o cliente precisa digitar o cpf duas vezes, na fixa de cadastro e quando seleciona pix/boleto, n?o teria como ele puxar a informa??o do cadastro?