Answer the question
In order to leave comments, you need to log in
How to move breadcrumbs to woocommerce?
Good afternoon!
There is a site. It displays brand crumps on the category page ( quokka.beget.tech/product-category/coffee ) under the header.
I can't find a template for these pages to move the crumbs in front of the footer to the bottom of the page.
Answer the question
In order to leave comments, you need to log in
Something like this. Word = from 2 letters. In the string "annaanna" - 8 even intersecting palindromes
var s, w : string;
i,j : integer;
function IsPalindrome(s : string) : boolean;
var i, max, len : integer;
begin
len := length(s);
Result := true;
for i := 1 to ceil(Length(s) / 2) do
begin
if s[i] <> s[len - i + 1] then
begin
Result := false;
break;
end;
end;
end;
begin
s := 'аннааннабобпотоп';
for i := 1 to length(s)-1 do
begin
for j := 2 to length(s) - i + 1 do
begin
w := copy(s,i,j);
if Length(w) mod 2 = 0 then
begin
write(w);
if IsPalindrome(w) then write(' - палиндром');
writeln('');
end;
end;
end;
end.
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question