Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
makura-2025
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Raj Shah
makura-2025
Commits
550910e0
Commit
550910e0
authored
May 30, 2025
by
rajshah
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
done main content single case study
parent
6c1b4490
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
70 additions
and
85 deletions
+70
-85
case-study-content.php
blocks/case-study/case-study-content.php
+52
-0
blocks.php
includes/gutenberg/blocks.php
+18
-1
case-study-detail.php
page-templates/case-study-detail.php
+0
-84
No files found.
blocks/case-study/case-study-content.php
0 → 100644
View file @
550910e0
<!-- Case Study Content -->
<?php
$case_study_content
=
get_field
(
'case_study_content'
)
?:
[];
if
(
!
empty
(
$case_study_content
)
&&
isset
(
$case_study_content
)
&&
is_array
(
$case_study_content
))
:
?>
<section
class=
"case-study-general makura-new"
>
<div
class=
"container"
>
<div
class=
"row"
>
<div
class=
"col-lg-4 col-xl-3"
>
<aside
class=
"case-study-general-aside toc"
>
<div
class=
"toc-title d-lg-none"
>
<h6>
Table of Content
</h6>
</div>
<div
class=
"category-list"
>
<ul>
<?php
foreach
(
$case_study_content
as
$i
=>
$casestudy
)
:
$case_study_content_title
=
$casestudy
[
'case_study_content_title'
]
??
''
;
$case_study_content_desc
=
$casestudy
[
'case_study_content_desc'
]
??
''
;
$case_study_content_title_id
=
str_replace
(
' '
,
'-'
,
strtolower
(
$case_study_content_title
));
if
(
!
empty
(
$case_study_content_title
))
:
?>
<li
class=
"
<?php
echo
esc_attr
(
$i
===
0
)
?
'active'
:
''
;
?>
"
>
<a
href=
"#"
data-target=
"
<?php
echo
esc_attr
(
$case_study_content_title_id
);
?>
"
>
<?php
echo
esc_html
(
$case_study_content_title
);
?>
</a>
</li>
<?php
endif
;
endforeach
;
?>
</ul>
</div>
</aside>
</div>
<div
class=
"col-lg-8 col-xl-9"
>
<div
class=
"case-study-general-content"
>
<?php
foreach
(
$case_study_content
as
$i
=>
$casestudy
)
:
$case_study_content_title
=
$casestudy
[
'case_study_content_title'
]
??
''
;
$case_study_content_desc
=
$casestudy
[
'case_study_content_desc'
]
??
''
;
$case_study_content_title_id
=
str_replace
(
' '
,
'-'
,
strtolower
(
$case_study_content_title
));
if
(
!
empty
(
$case_study_content_title
))
:
?>
<h2
id=
"
<?php
echo
esc_attr
(
$case_study_content_title_id
);
?>
"
>
<?php
echo
esc_html
(
$case_study_content_title
);
?>
</h2>
<?php
endif
;
if
(
!
empty
(
$case_study_content_desc
))
:
echo
esc_html
(
$case_study_content_desc
);
endif
;
?>
<?php
endforeach
;
?>
</div>
</div>
</div>
</div>
</section>
<?php
endif
;
?>
<!-- !Case Study Content -->
\ No newline at end of file
includes/gutenberg/blocks.php
View file @
550910e0
...
@@ -775,7 +775,7 @@ function my_acf_init_block_types()
...
@@ -775,7 +775,7 @@ function my_acf_init_block_types()
acf_register_block_type
(
array
(
acf_register_block_type
(
array
(
'name'
=>
'Case Study Banner Block'
,
'name'
=>
'Case Study Banner Block'
,
'title'
=>
__
(
'Case Study Banner Block'
),
'title'
=>
__
(
'Case Study Banner Block'
),
'description'
=>
__
(
'Case Study - Banner Block for
SEO Page
s'
),
'description'
=>
__
(
'Case Study - Banner Block for
Makura Project
s'
),
'render_template'
=>
'blocks/case-study/case-study-banner.php'
,
'render_template'
=>
'blocks/case-study/case-study-banner.php'
,
'category'
=>
'formatting'
,
'category'
=>
'formatting'
,
'icon'
=>
file_get_contents
(
get_template_directory
()
.
'/assets/img/makura.svg'
),
'icon'
=>
file_get_contents
(
get_template_directory
()
.
'/assets/img/makura.svg'
),
...
@@ -787,5 +787,21 @@ function my_acf_init_block_types()
...
@@ -787,5 +787,21 @@ function my_acf_init_block_types()
],
],
],
],
));
));
// Case Study - Content Block
acf_register_block_type
(
array
(
'name'
=>
'Case Study Content Block'
,
'title'
=>
__
(
'Case Study Content Block'
),
'description'
=>
__
(
'Case Study - Content Block for Makura Projects'
),
'render_template'
=>
'blocks/case-study/case-study-content.php'
,
'category'
=>
'formatting'
,
'icon'
=>
file_get_contents
(
get_template_directory
()
.
'/assets/img/makura.svg'
),
'keywords'
=>
array
(
'Case Study - Content Block'
,
'case study'
,
'content'
,
'makura'
),
'example'
=>
[
'attributes'
=>
[
'mode'
=>
'preview'
,
'data'
=>
[],
],
],
));
}
}
}
}
\ No newline at end of file
page-templates/case-study-detail.php
View file @
550910e0
...
@@ -8,91 +8,7 @@ get_header();
...
@@ -8,91 +8,7 @@ get_header();
the_content
();
the_content
();
?>
?>
<section
class=
"case-study-general makura-new"
>
<div
class=
"container"
>
<div
class=
"row"
>
<div
class=
"col-lg-4 col-xl-3"
>
<aside
class=
"case-study-general-aside toc"
>
<div
class=
"toc-title d-lg-none"
>
<h6>
Table of Content
</h6>
</div>
<div
class=
"category-list"
>
<ul>
<li
class=
"active"
>
<a
href=
"#"
data-target=
"background"
>
Background
</a>
</li>
<li>
<a
href=
"#"
data-target=
"seo"
>
Background
</a>
</li>
</ul>
</div>
</aside>
</div>
<div
class=
"col-lg-8 col-xl-9"
>
<div
class=
"case-study-general-content"
>
<h2
id=
"background"
>
Background
</h2>
<p>
Lambda Payments specializes in financial technology, enriching the way people and businesses pay
and are paid and improving the safety of their money and other valuable assets. Lambda Payments
provides end-to-end Fintech products and solutions to enterprises, banks, and financial
institutions. Combining a team of battle-hardened industry experts with avant-garde technology,
we provide an all-encompassing suite of solutions fitted for the unique needs of our clients.
Dedicated to the pursuit of excellence, focused on user-centric design, they strive to enable
technology to make lives better for all.
</p>
<h2
id=
"seo"
>
SEO Achievements
</h2>
<p>
Lambda Payments provides end-to-end Fintech products and solutions to enterprises, banks, and
financial institutions.
</p>
<ol>
<li>
Improved Keyword Rankings
</li>
<li>
Increased Traffic
</li>
<li>
Enhanced User Engagement
</li>
<li>
Built Industry Authority
</li>
</ol>
<table>
<tbody>
<tr>
<td>
Metric
</td>
<td>
Initial Value (Jan 2024)
</td>
<td>
Final Value (Jan 2025)
</td>
<td>
Growth
</td>
</tr>
<tr>
<td>
Authority Score
</td>
<td>
Authority Score
</td>
<td>
Authority Score
</td>
<td>
Authority Score
</td>
</tr>
<tr>
<td>
Authority Score
</td>
<td>
Authority Score
</td>
<td>
Authority Score
</td>
<td>
Authority Score
</td>
</tr>
</tbody>
</table>
<h2>
Performance Metrics Graph
</h2>
<p>
Combining a team of battle-hardened industry experts with avant-garde technology, we provide an
all-encompassing suite of solutions fitted for the unique needs of our clients. Dedicated to the
pursuit of excellence, focused on user-centric design, they strive to enable technology to make
lives better for all.
</p>
<img
src=
"
<?php
echo
get_parent_theme_file_uri
()
?>
/assets/img/blog-banner.png"
alt=
""
class=
"img-fluid"
>
<figure>
<img
src=
"
<?php
echo
get_parent_theme_file_uri
()
?>
/assets/img/blog-banner.png"
alt=
""
class=
"img-fluid"
>
</figure>
<h2>
Traffic Growth
</h2>
<p>
In addition to keyword improvements, organic traffic has steadily grown:
</p>
<ul>
<li>
Organic Traffic: Traffic grew by 78%, from 1,730 visitors to 3,075 in January 2024
</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<?php
<?php
get_template_part
(
"/template-parts/home/milestone"
,
null
);
get_template_part
(
"/template-parts/home/milestone"
,
null
);
get_footer
();
get_footer
();
...
...
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