Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
N
NAP-wordpress
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
JIRA
JIRA
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Marwa Sfari
NAP-wordpress
Commits
344636f1
Commit
344636f1
authored
Aug 25, 2017
by
Nahla Shiri
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
acces pro correction
parent
fdd8199b
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
265 additions
and
202 deletions
+265
-202
nap.js
wp-content/themes/nap/assets/js/nap.js
+61
-46
download.php
wp-content/themes/nap/download.php
+1
-0
functions.php
wp-content/themes/nap/functions.php
+75
-67
archive-product.php
wp-content/themes/nap/woocommerce/archive-product.php
+128
-89
No files found.
wp-content/themes/nap/assets/js/nap.js
View file @
344636f1
jQuery
(
document
).
ready
(
function
()
{
jQuery
(
document
).
ready
(
function
()
{
jQuery
(
document
).
on
(
'click'
,
".format-list"
,
function
()
{
var
format
=
jQuery
(
this
).
find
(
'.format-desc'
).
text
();
jQuery
(
'.info-format'
).
text
(
format
);
jQuery
(
'.info-format-txt'
).
text
(
format
);
});
jQuery
(
document
).
on
(
'click'
,
".download_file"
,
function
()
{
jQuery
(
document
).
on
(
'click'
,
".download_file"
,
function
()
{
var
id
;
var
id
;
var
download_link
=
jQuery
(
'.download_file_link'
).
attr
(
'href'
);
var
download_link
=
jQuery
(
'.download_file_link'
).
attr
(
'href'
);
...
@@ -50,18 +58,18 @@ jQuery(document).ready(function() {
...
@@ -50,18 +58,18 @@ jQuery(document).ready(function() {
//filtre couleur
//filtre couleur
var
tabcolor
=
[];
var
tabcolor
=
[];
i
=
0
;
i
=
0
;
jQuery
(
"#pa_couleur .selected"
).
each
(
function
()
{
jQuery
(
"#pa_couleur .selected"
).
each
(
function
()
{
tabcolor
[
i
++
]
=
jQuery
(
this
).
attr
(
'data-color'
);
tabcolor
[
i
++
]
=
jQuery
(
this
).
attr
(
'data-color'
);
});
});
var
tabformat
=
[];
var
tabformat
=
[];
i
=
0
;
i
=
0
;
jQuery
(
"#pa_format .selected"
).
each
(
function
()
{
jQuery
(
"#pa_format .selected"
).
each
(
function
()
{
tabformat
[
i
++
]
=
jQuery
(
this
).
text
();
tabformat
[
i
++
]
=
jQuery
(
this
).
text
();
});
});
var
tabmatiere
=
[];
var
tabmatiere
=
[];
i
=
0
;
i
=
0
;
jQuery
(
"#pa_matiere .selected"
).
each
(
function
()
{
jQuery
(
"#pa_matiere .selected"
).
each
(
function
()
{
...
@@ -70,57 +78,64 @@ jQuery(document).ready(function() {
...
@@ -70,57 +78,64 @@ jQuery(document).ready(function() {
var
selected_colors
=
tabcolor
.
join
(
','
);
var
selected_colors
=
tabcolor
.
join
(
','
);
var
selected_formats
=
tabformat
.
join
(
','
);
var
selected_formats
=
tabformat
.
join
(
','
);
var
selected_matiere
=
tabmatiere
.
join
(
','
);
var
selected_matiere
=
tabmatiere
.
join
(
','
);
var
params
=
{
pa_couleur
:
selected_colors
,
pa_format
:
selected_formats
,
pa_matiere
:
selected_matiere
};
var
params
=
{
pa_couleur
:
selected_colors
,
pa_format
:
selected_formats
,
pa_matiere
:
selected_matiere
};
window
.
location
.
href
=
"?"
+
jQuery
.
param
(
params
);
window
.
location
.
href
=
"?"
+
jQuery
.
param
(
params
);
/*history.pushState({}, null, "?" + jQuery.param(params));
/*history.pushState({}, null, "?" + jQuery.param(params));
jQuery.ajax({
jQuery.ajax({
type: 'GET',
type: 'GET',
url: '',
url: '',
data: {"pa_couleur": selected_colors,"pa_format":selected_formats},
data: {"pa_couleur": selected_colors,"pa_format":selected_formats},
success: function(data) {
success: function(data) {
},
},
error: function() {
error: function() {
}
}
});
jQuery(".product-list article li").each(function() {
var product_color = jQuery(this).attr('data-color');
var product_format = jQuery(this).attr('data-format');
if (jQuery.inArray(product_color, tabcolor) >= 0 || jQuery.inArray(product_format, tabformat) >= 0) {
jQuery(this).closest('article').addClass('in_search');
}
});
*/
});
});
jQuery(".product-list article li").each(function() {
var product_color = jQuery(this).attr('data-color');
var product_format = jQuery(this).attr('data-format');
if (jQuery.inArray(product_color, tabcolor) >= 0 || jQuery.inArray(product_format, tabformat) >= 0) {
jQuery(this).closest('article').addClass('in_search');
}
jQuery
(
'.filter-bloc '
).
each
(
function
()
{
});
if
(
jQuery
(
this
).
find
(
'.bloc-content'
).
length
==
0
)
{
*/
jQuery
(
this
).
hide
();
}
});
});
if
(
jQuery
.
urlParam
(
'pa_format'
)
!=
''
||
jQuery
.
urlParam
(
'pa_couleur'
)
!=
''
||
jQuery
.
urlParam
(
'pa_matiere'
)
!=
''
){
jQuery
(
'.list-animation section'
).
each
(
function
()
{
jQuery
(
'.list-animation section'
).
each
(
function
()
{
if
(
jQuery
(
this
).
find
(
'article.selected'
).
length
==
0
)
{
if
(
jQuery
(
this
).
find
(
"article"
).
length
)
{
jQuery
(
this
).
hide
();
console
.
log
(
'article found'
);
}
}
});
}
else
{
jQuery
(
this
).
hide
();
jQuery
(
'.filter-bloc '
).
each
(
function
()
{
}
})
if
(
jQuery
(
this
).
find
(
'.bloc-content'
).
length
==
0
)
{
jQuery
(
this
).
hide
();
}
});
});
});
jQuery
.
urlParam
=
function
(
name
){
jQuery
.
urlParam
=
function
(
name
)
{
var
results
=
new
RegExp
(
'[
\
?&]'
+
name
+
'=([^&#]*)'
).
exec
(
window
.
location
.
href
);
var
results
=
new
RegExp
(
'[
\
?&]'
+
name
+
'=([^&#]*)'
).
exec
(
window
.
location
.
href
);
return
results
[
1
]
||
0
;
return
results
[
1
]
||
0
;
}
}
\ No newline at end of file
wp-content/themes/nap/download.php
View file @
344636f1
...
@@ -35,6 +35,7 @@ $post_ID = 260;
...
@@ -35,6 +35,7 @@ $post_ID = 260;
while
(
has_sub_field
(
'tl_images'
,
$post_ID
))
:
while
(
has_sub_field
(
'tl_images'
,
$post_ID
))
:
$options
=
array
();
$options
=
array
();
$options
[
'image'
]
=
get_sub_field
(
'tl_image'
);
$options
[
'image'
]
=
get_sub_field
(
'tl_image'
);
$options
[
'title'
]
=
get_sub_field
(
'tl_titre_image'
);
$options
[
'dwnldLink'
]
=
get_sub_field
(
'tl_link'
);
$options
[
'dwnldLink'
]
=
get_sub_field
(
'tl_link'
);
echo
nap_get_item
(
$post_ID
,
null
,
''
,
$options
);
echo
nap_get_item
(
$post_ID
,
null
,
''
,
$options
);
?>
?>
...
...
wp-content/themes/nap/functions.php
View file @
344636f1
...
@@ -415,31 +415,32 @@ function nap_distinct_format_variations($variations) {
...
@@ -415,31 +415,32 @@ function nap_distinct_format_variations($variations) {
return
$var_format
;
return
$var_format
;
}
}
function
nap_filter_attribute
(
$postID
,
$search
,
$attribute
,
$color
=
false
)
{
function
nap_filter_attribute
(
$id
,
$args
,
$options
,
$list_attr
,
$search
)
{
if
(
isset
(
$search
)
&&
$search
!=
''
)
{
if
(
isset
(
$search
[
'pa_format'
])
&&
$search
[
'pa_format'
]
!=
''
){
$tab_attr
=
get_the_terms
(
$postID
,
$attribute
);
$list_format
=
explode
(
","
,
$search
[
'pa_format'
]);
}
$filter
=
"hidden"
;
if
(
isset
(
$search
[
'pa_couleur'
])
&&
$search
[
'pa_couleur'
]
!=
''
){
if
(
is_array
(
$tab_attr
))
{
$list_couleur
=
explode
(
","
,
$search
[
'pa_couleur'
]);
foreach
(
$tab_attr
as
$key
=>
$value
)
{
}
if
(
$color
)
{
if
(
isset
(
$search
[
'pa_matiere'
])
&&
$search
[
'pa_matiere'
]
!=
''
){
$code
=
nap_color_attribute
(
$value
->
slug
);
$list_matiere
=
explode
(
","
,
$search
[
'pa_matiere'
]);
}
if
(
$code
!=
''
&&
stristr
(
$search
,
$code
))
{
if
(
isset
(
$search
[
'pa_univers'
])
&&
$search
[
'pa_univers'
]
!=
''
){
$filter
=
"selected"
;
$list_univers
=
explode
(
","
,
$search
[
'pa_univers'
]);
}
}
else
{
if
(
stristr
(
$search
,
$value
->
name
))
{
$filter
=
"selected"
;
}
}
}
}
}
}
return
$filter
;
if
(
(
(
$list_couleur
&&
in_array
(
$list_attr
[
'pa_couleur'
],
$list_couleur
))
||
empty
(
$list_couleur
)
)
&&
(
(
$list_format
&&
in_array
(
$list_attr
[
'pa_format'
],
$list_format
))
||
empty
(
$list_format
)
)
&&
(
(
$list_univers
&&
in_array
(
$list_attr
[
'pa_univers'
],
$list_univers
))
||
empty
(
$list_univers
)
)
&&
(
(
$list_matiere
&&
in_array
(
$list_attr
[
'pa_matiere'
],
$list_matiere
))
||
empty
(
$list_matiere
)
)
)
{
echo
nap_get_item
(
$id
,
$args
,
'catalogue'
,
$options
);
}
}
}
function
nap_get_item
(
$post_ID
,
$args
=
null
,
$current_page
=
''
,
$options
=
null
,
$search
=
null
)
{
function
nap_get_item
(
$post_ID
,
$args
=
null
,
$current_page
=
''
,
$options
=
null
,
$search
=
null
)
{
$link
=
$image
=
$size
=
''
;
$link
=
$image
=
$size
=
''
;
if
(
isset
(
$options
))
{
if
(
isset
(
$options
))
{
if
(
$options
[
'dwnldLink'
])
{
if
(
$options
[
'dwnldLink'
])
{
...
@@ -453,55 +454,61 @@ function nap_get_item($post_ID, $args = null, $current_page = '', $options = nul
...
@@ -453,55 +454,61 @@ function nap_get_item($post_ID, $args = null, $current_page = '', $options = nul
if
(
$options
[
'size'
])
{
if
(
$options
[
'size'
])
{
$size
=
$options
[
'size'
];
$size
=
$options
[
'size'
];
}
}
}
if
(
isset
(
$search
[
'pa_couleur'
])
&&
$search
[
'pa_couleur'
]
!=
''
)
{
$colors_value
=
get_the_terms
(
$post_ID
,
'pa_couleur'
);
$filter
=
"hidden"
;
if
(
is_array
(
$colors_value
))
{
foreach
(
$colors_value
as
$key
=>
$value
)
{
$code
=
nap_color_attribute
(
$value
->
slug
);
if
(
$code
!=
''
&&
stristr
(
$search
[
'pa_couleur'
],
$code
))
{
if
(
$options
[
'title'
])
{
$filter
=
"selected"
;
$title_item
=
$options
[
'title'
];
}
}
else
{
}
$title_item
=
get_the_title
(
$post_ID
);
}
}
/*$attributes = array('Univers' => 'pa_univers', 'Matiére' => 'pa_matiere', 'Format' => 'pa_format', 'Couleurs' => 'pa_couleur');
foreach ($attributes as $key => $value) :
if($value = 'pa_couleur' )
$filter= nap_filter_attribute($post_ID,$search[$value],$value,true);
else
$filter= nap_filter_attribute($post_ID,$search[$value],$value);
endforeach;*/
if
(
isset
(
$search
[
'pa_format'
])
&&
$search
[
'pa_format'
]
!=
''
)
{
$format_value
=
get_the_terms
(
$post_ID
,
'pa_format'
);
$filter
=
"hidden"
;
if
(
is_array
(
$format_value
))
{
foreach
(
$format_value
as
$key
=>
$value
)
{
if
(
stristr
(
$search
[
'pa_format'
],
$value
->
name
))
{
$filter
=
"selected"
;
}
}
}
}
}
}
if
(
isset
(
$search
[
'pa_matiere'
])
&&
$search
[
'pa_matiere'
]
!=
''
)
{
$format_value
=
get_the_terms
(
$post_ID
,
'pa_matiere'
);
$filter
=
"hidden"
;
/* if (isset($search['pa_couleur']) && $search['pa_couleur'] != '') {
if
(
is_array
(
$format_value
))
{
$colors_value = get_the_terms($post_ID, 'pa_couleur');
foreach
(
$format_value
as
$key
=>
$value
)
{
$filter = "hidden";
if (is_array($colors_value)) {
if
(
stristr
(
$search
[
'pa_matiere'
],
$value
->
name
))
{
foreach ($colors_value as $key => $value) {
$filter
=
"selected"
;
$code = nap_color_attribute($value->slug);
}
}
if ($code != '' && stristr($search['pa_couleur'], $code)) {
}
$filter = "selected";
}
}
}
}
}
/*$attributes = array('Univers' => 'pa_univers', 'Matiére' => 'pa_matiere', 'Format' => 'pa_format', 'Couleurs' => 'pa_couleur');
foreach ($attributes as $key => $value) :
if($value = 'pa_couleur' )
$filter= nap_filter_attribute($post_ID,$search[$value],$value,true);
else
$filter= nap_filter_attribute($post_ID,$search[$value],$value);
endforeach; */
/* if (isset($search['pa_format']) && $search['pa_format'] != '') {
$format_value = get_the_terms($post_ID, 'pa_format');
$filter = "hidden";
if (is_array($format_value)) {
foreach ($format_value as $key => $value) {
if (stristr($search['pa_format'], $value->name)) {
$filter = "selected";
}
}
}
}
if (isset($search['pa_matiere']) && $search['pa_matiere'] != '') {
$format_value = get_the_terms($post_ID, 'pa_matiere');
$filter = "hidden";
if (is_array($format_value)) {
foreach ($format_value as $key => $value) {
if (stristr($search['pa_matiere'], $value->name)) {
$filter = "selected";
}
}
}
} */
if
(
isset
(
$filter
))
if
(
isset
(
$filter
))
$class
=
$filter
;
$class
=
$filter
;
...
@@ -531,7 +538,8 @@ function nap_get_item($post_ID, $args = null, $current_page = '', $options = nul
...
@@ -531,7 +538,8 @@ function nap_get_item($post_ID, $args = null, $current_page = '', $options = nul
$nap_article
.=
'</ul>'
;
$nap_article
.=
'</ul>'
;
endif
;
endif
;
$nap_article
.=
'</figure>
$nap_article
.=
'</figure>
<h3 class = "font-small" >'
.
get_the_title
(
$post_ID
)
.
'</h3>
<h3 class = "font-small" >'
.
$title_item
.
'</h3>
</article>'
;
</article>'
;
return
$nap_article
;
return
$nap_article
;
...
...
wp-content/themes/nap/woocommerce/archive-product.php
View file @
344636f1
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment