Forum Replies Created

Viewing 15 replies - 1 through 15 (of 23 total)
  • Thread Starter Pinoss

    (@pinoss)

    Wow awesome! Thanks a lot! Great plugin and support! I’ll give 5 star review

    Thread Starter Pinoss

    (@pinoss)

    Hi!

    This is my code, but I don’t know where to put “braapf_seo_meta_title” action and $instance.

     
    
    //Check if actual URL contain some filters
    if (  isset( $_GET['filters'] )) {
    				
    	// if yes, echo title generated by ajax advanced filter plugin		
    echo "<h1>HERE NEED TO SHOW TITLE VARIABLE</h1>";
    
    }
    		

    Regards.

    • This reply was modified 3 years ago by Pinoss.
    Thread Starter Pinoss

    (@pinoss)

    Thanks for your response.
    Problem solved!

    Thread Starter Pinoss

    (@pinoss)

    Thanks for your response,

    I tried it but is not working for me, probably i’m missing something.

    I want to show the actual filtered URL title before products on product categories pages.
    I’m detecting if actual URL have any filter applied:

    if ( isset( $_GET['filters'] ) )

    and if it’s TRUE, I want to echo the title (is configured on SEO elements structure tab in order to show with filters names and values).

    Can you share an example please?

    Thanks in advance!

    Thread Starter Pinoss

    (@pinoss)

    Ok just found the solution.

    For anyone else with the same problem:

    origin:/categoria/(.*)$
    destination:/$1

    Regards

    Thread Starter Pinoss

    (@pinoss)

    Hi,

    I solved the issue.

    Thanks.

    Thread Starter Pinoss

    (@pinoss)

    Hi,

    I solved the issue.

    Thanks.

    Thread Starter Pinoss

    (@pinoss)

    Hi, Te above URL is not mine, it seems that someone put some spam.
    I solved the problem, thanks for all!

    Thread Starter Pinoss

    (@pinoss)

    Hi,

    Thanks for response. I’m using free Master Slider. I have tried this plugin and another one but don’t find coincidences in the database . But if you view the soruce code of the website, the data src attribute is pointing to the old Url.

    Regards.

    Thread Starter Pinoss

    (@pinoss)

    Thanks for response.

    Now, I’m trying to show the number of results when a search is realized. I have searched across 9-sec support forum but haven’t seen any related topic. Furthermore, I want to print applied filters. I saw one code in a topic and I’m using print_r($getdata['taxo']).
    Working together, when a search is realized, it would print something like this:
    “Search results of example category and example tag : 18”.

    Another question that I have is : how to show a category dropdown filter with hierarquical categorys? I use this snippet found in a topic:

    add_filter('uwpqsf_tax_field_dropdown','custom_dropdown_output','',12);
    function custom_dropdown_output($html,$type,$exc,$hide,$taxname,$taxlabel,$taxall,$opt,$c,$defaultclass,$formid,$divclass){
    
    $args = array('hide_empty'=>$hide,'exclude'=>$eid );
    $taxoargs = apply_filters('uwpqsf_taxonomy_arg',$args,$taxname,$formid);
    $terms = get_terms($taxname,$taxoargs); $count = count($terms);
    
    			 if($type == 'dropdown'){
    			$html  = '<div class="'.$defaultclass.' '.$divclass.' tax-select-'.$c.'"><span class="taxolabel-'.$c.'">'.$taxlabel.'</span>';
    			$html .= '<input  type="hidden" name="taxo['.$c.'][name]" value="'.$taxname.'">';
    			$html .= '<input  type="hidden" name="taxo['.$c.'][opt]" value="'.$opt.'">';
    			$html .=  '<select id="tdp-'.$c.'" name="taxo['.$c.'][term]">';
    			if(!empty($taxall)){
    				$html .= '<option selected value="uwpqsftaxoall">'.$taxall.'</option>';
    			}
    					if ( $count > 0 ){
    						foreach ( $terms as $term ) {
    					 $selected = $terms[0]->term_id;
    $html .= '<option value="'.$term->slug.'">'.$term->name.'</option>';
    
        $args = array(
            'hide_empty'    => false,
            'hierarchical'  => true,
            'parent'        => $term->term_id
        );
        $childterms = get_terms($taxname, $args);
    
        foreach ( $childterms as $childterm ) {
                $selected = $childterms[0]->term_id;
    
            $html .= "<option value='".$childterm->slug."'"."> ?? >"  . $childterm->name . '</option>';
    
        }}
    			}
    			$html .= '</select>';
    			$html .= '</div>';
    			return  apply_filters( 'custom_dropdown_output', $html,$type,$exc,$hide,$taxname,$taxlabel,$taxall,$opt,$c,$defaultclass,$formid,$divclass);
    		}
    
    }

    but only shows 1 category depth. I have more categories inside subcategories. I tried with depth argument in $args but don’t work. How can I do it?

    Thanks in advance.

    Hi,

    I tried all possible methods described here and in other topics and the problem still persists. I tried snippets, reinstalling version of WordPress by FTP and using Dashboard -> Updates option, deactivating plugins, permissions, .htaccess… But when I go to my media library images won’t load, only if I select “list Mode” and if I try upload images in my posts, spinning wheel are loading forever.

    Any idea?

    Tanks.

    Thread Starter Pinoss

    (@pinoss)

    Allright, thanks for all.

    Thread Starter Pinoss

    (@pinoss)

    No It’s a Premium Theme.

    I try to update this theme in my “test domain” and the bug it’s fixed but I modified a lot of archives (header.php, function.php, etc.) and If I update the theme all of this archives will be erased. Y try to upload by FTP the modified files once it’s updated in order to rewrite archives but design and some functions don’t work.

    I deactivate all plugins and the problem still persists.

    Any idea?

    Thanks

    Thread Starter Pinoss

    (@pinoss)

    Hi Paul,

    Yes it’s fixed with version 1.7.3, Great!

    I’m trying to test the plugin in order to update one post. I read in the support forum that first create this post and then export the csv. Then edit and delete everything except data related to this post. This is what I have done but when i’m importing the file, takes a long time and gives an error: “import failed server did not retorn Because a valid json data “.

    Additionally ask if when import some CSV, the plugin remove “wp” and others prefixes and update items in database without any problem.

    Thanks in advance,
    Good job!

    Thread Starter Pinoss

    (@pinoss)

    Yes I’m referring to this custom fields.

    I view that version 1.7.2 it’s now available . I upgraded the plugin and now this fields are showed but there is a problem: first rows are exported well but after some lines, columns are mixed.

    Regards

Viewing 15 replies - 1 through 15 (of 23 total)